Description Usage Arguments Details Value Examples
Extract residuals for each gene from model fit with fitVarPartModel()
1 2 |
object |
object produced by fitVarPartModel() |
... |
other arguments. |
If model is fit with missing data, residuals returns NA for entries that were missing in the original data
Residuals extracted from model fits stored in object
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # load library
# library(variancePartition)
# Intialize parallel backend with 4 cores
library(BiocParallel)
register(SnowParam(4))
# load simulated data:
# geneExpr: matrix of gene expression values
# info: information/metadata about each sample
data(varPartData)
# Specify variables to consider
# Age is continuous so we model it as a fixed effect
# Individual and Tissue are both categorical, so we model them as random effects
form <- ~ Age + (1|Individual) + (1|Tissue)
# Fit model
modelFit <- fitVarPartModel( geneExpr, form, info )
# Extract residuals of model fit
res <- residuals( modelFit )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.