imputeALS | R Documentation |
imputeALS
imputeALS(data, lambda, r, iters, use.biases)
data |
a matrix containing missing values that should be imputed |
lambda |
the learning rate |
r |
number of coefficients per sample and feature |
iters |
the number of iterations the ALS should be executed |
use.biases |
TRUE if the bias model should be used |
a matrix containing the original values with missing values replaced by imputed values
Koren2009Raspository
\insertRefHastie2014Raspository
library(BEclear)
data("BEclearData")
batchEffect <- calcBatchEffects(
data = ex.data, samples = ex.samples,
adjusted = TRUE, method = "fdr")
mdifs <- batchEffect$med
pvals <- batchEffect$pval
summary <-calcSummary(mdifs, pvals)
cleared.data <- clearBEgenes(ex.data, ex.samples, summary)
result <- imputeALS(cleared.data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.