powered by
Compute aggregated (SmCCA) canonical weights for single omics data with quantitative phenotype (subampling enabled).
getRobustWeightsSingle( X1, Trait, Lambda1, s1 = 0.7, SubsamplingNum = 1000, trace = FALSE )
A canonical correlation weight matrix with \(p_1\) rows. Each column is the canonical correlation weights based on subsampled X1
X1
features. The number of columns is SubsamplingNum.
SubsamplingNum
An \(n\times p_1\) data matrix (e.g. mRNA) with \(p_1\) features and \(n\) subjects.
An \(n\times 1\) trait (phenotype) data matrix for the same \(n\) subjects.
LASSO penalty parameter for X1. Lambda1 needs to be between 0 and 1.
Lambda1
Proportion of features in X1 to be included, default at s1 = 0.7. s1 needs to be between 0 and 1, default is set to 0.7.
s1 = 0.7
s1
Number of feature subsamples. Default is 1000. Larger number leads to more accurate results, but at a higher computational cost.
Whether to display the CCA algorithm trace, default is set to FALSE.
## For illustration, we only subsample 5 times. set.seed(123) # Single Omics SmCCA W1 <- getRobustWeightsSingle(X1, Trait = Y, Lambda1 = 0.05, s1 = 0.7, SubsamplingNum = 5, trace = FALSE)
Run the code above in your browser using DataLab