Description Usage Arguments Details Value Author(s) See Also Examples
This function splits the data set into a train set and a test set, and returns
a prediction error. The function lfmm_ridge is run with the
train set and the prediction error is evaluated from the test set.
| 1 | lfmm_ridge_CV(Y, X, n.fold.row, n.fold.col, lambdas, Ks)
 | 
| Y | a response variable matrix with n rows and p columns. Each column corresponds to a distinct response variable (e.g., SNP genotype, gene expression level, beta-normalized methylation profile, etc). Response variables must be encoded as numeric. | 
| X | an explanatory variable matrix with n rows and d columns. Each column corresponds to a distinct explanatory variable (eg. phenotype). Explanatory variables must be encoded as numeric. | 
| n.fold.row | number of cross-validation folds along rows. | 
| lambdas | a list of numeric values for the regularization parameter. | 
| Ks | a list of integer for the number of latent factors in the regression model. | 
| p.fold.col | number of cross-validation folds along columns. | 
The response variable matrix Y and the explanatory variables X are centered.
a dataframe containing prediction errors for all values of lambda and K
cayek, francoio
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | library(ggplot2)
library(lfmm)
 ## sample data
 K <- 3
 dat <- lfmm_sampler(n = 100, p = 1000, K = K,
                     outlier.prop = 0.1,
                     cs = c(0.8),
                     sigma = 0.2,
                     B.sd = 1.0,
                     U.sd = 1.0,
                     V.sd = 1.0)
 ## run cross validation
 errs <- lfmm_ridge_CV(Y = dat$Y,
                         X = dat$X,
                         n.fold.row = 5,
                         n.fold.col = 5,
                         lambdas = c(1e-10, 1, 1e20),
                         Ks = c(1,2,3,4,5,6))
 ## plot error
 ggplot(errs, aes(y = err, x = as.factor(K))) +
   geom_boxplot() +
   facet_grid(lambda ~ ., scale = "free")
 ggplot(errs, aes(y = err, x = as.factor(lambda))) +
   geom_boxplot() +
   facet_grid(K ~ ., scales = "free")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.