Set of Functions to Use in Survival Analysis and in Data Science
Collection of function to improve workflow in survival analysis and data
science. Among the many features, the generation of balanced datasets,
retrieval of protein coding genes from two public databases (live) and
generation of random matrix based on covariance matrix.
The work has been mainly supported by two grants: FCT SFRH/BD/97415/2013
and the EU Commission under SOUND project with contract number 633974.
Install
The only pre-requirement is to install biomaRt bioconductor package as
it cannot be installed automatically via CRAN.
All other dependencies should be installed when running the install
command.
if (!require("BiocManager"))
install.packages("BiocManager")
BiocManager::install("loose.rock")
# use the package
library(loose.rock)
Overview
coding.genes(): downloads protein coding genes from external
databases
gen.synth.xdata(): generate random matrix with pre-determined
covariance
balanced.cv.folds() and balanced.train.and.test(): get balanced
train/test sets and cv folds.
This is specially relevant in survival or binary output with few cases
of one category that need to be well distributed among test/train
datasets or in cross-validation folds.
Example below sets aside 90% of the data to the training set. As samples
are already divided in two sets (set1 and set2), it performs the 90%
separation for each and then joins (with option join.all = T) the
result.
#> Using .2^|i-j| to generate co-variance matrix
#> X generated
#> cov(X)
#> Using .75^|i-j| to generate co-variance matrix (plotting correlation)
#> X generated
#> cov(X)
Save in cache
Uses a cache to save and retrieve results. The cache is automatically
created with the arguments and source code for function, so that if any
of those changes, the cache is regenerated.
Caution: Files are not deleted so the cache directory can become rather
big.
Set a temporary directory to save all caches (optional)
a <- run.cache(sum, 1, 2)
#> Saving in cache: /tmp/Rtmpd4sOlL/run-cache/8ca6/cache-generic_cache-H_8ca697a81d8184a82de72523a678a4290375a07e304dd20a78bd488827978af3.RData
b <- run.cache(sum, 1, 2)
#> Loading from cache (not calculating):
#> /tmp/Rtmpd4sOlL/run-cache/8ca6/cache-generic_cache-H_8ca697a81d8184a82de72523a678a4290375a07e304dd20a78bd488827978af3.RData
#> Cache was created at 2021-03-15 16:24:17 using loose.rock v1.1.2
all(a == b)
#> [1] TRUE
Run rnorm function with an explicit seed (otherwise it would return the
same random number)
a <- run.cache(rnorm, 5, seed = 1985)
#> Saving in cache: /tmp/Rtmpd4sOlL/run-cache/9fda/cache-generic_cache-H_9fdab5baa36653c6d435ce2d68ec6651845f679861f463fe065f38115dc7acbe.RData
b <- run.cache(rnorm, 5, seed = 2000)
#> Saving in cache: /tmp/Rtmpd4sOlL/run-cache/2ada/cache-generic_cache-H_2adac402358921459b509ec972477640ce54df8436844fb57f761cbe49a3296d.RData
all(a == b)
#> [1] FALSE
Proper
One of such is a proper function that capitalizes a string.
x <- "OnE oF sUcH iS a proPer function that capitalizes a string."
proper(x)
#> [1] "One Of Such Is A Proper Function That Capitalizes A String."
Custom colors and symbols
my.colors() and my.symbols() can be used to improve plot
readability.
loose rock
Collection of function to improve workflow in survival analysis and data science. Among the many features, the generation of balanced datasets, retrieval of protein coding genes from two public databases (live) and generation of random matrix based on covariance matrix.
The work has been mainly supported by two grants: FCT SFRH/BD/97415/2013 and the EU Commission under SOUND project with contract number 633974.
Install
The only pre-requirement is to install
biomaRtbioconductor package as it cannot be installed automatically via CRAN.All other dependencies should be installed when running the install command.
Overview
coding.genes(): downloads protein coding genes from external databasesgen.synth.xdata(): generate random matrix with pre-determined covariancebalanced.cv.folds()andbalanced.train.and.test(): get balanced train/test sets and cv folds.run.cache(): keep cache or results of a functionproper(): Capitalize string using regexpressionmy.colors(): My own palletemy.symbols(): Same with symbols to plotsLibraries required for this vignette
Get a current list of protein coding genes
Showing only a random sample of 15
Balanced test/train dataset
This is specially relevant in survival or binary output with few cases of one category that need to be well distributed among test/train datasets or in cross-validation folds.
Example below sets aside 90% of the data to the training set. As samples are already divided in two sets (
set1andset2), it performs the 90% separation for each and then joins (with optionjoin.all = T) the result.Generate synthetic matrix with covariance
Save in cache
Uses a cache to save and retrieve results. The cache is automatically created with the arguments and source code for function, so that if any of those changes, the cache is regenerated.
Caution: Files are not deleted so the cache directory can become rather big.
Set a temporary directory to save all caches (optional)
Run sum function twice
Run rnorm function with an explicit seed (otherwise it would return the same random number)
Proper
One of such is a proper function that capitalizes a string.
Custom colors and symbols
my.colors()andmy.symbols()can be used to improve plot readability.