residuals,dreamletResult-method | R Documentation |
dreamletResult
Extract residuals from dreamletResult
## S4 method for signature 'dreamletResult'
residuals(object, y, ..., type = c("response", "pearson"))
object |
|
y |
|
... |
other arguments |
type |
compute either |
"response"
residuals are the typical residuals returned from lm()
. "pearson"
residuals divides each residual value by its estimated standard error. This requires specifying y
residuals from model fit
library(muscat)
library(SingleCellExperiment)
data(example_sce)
# create pseudobulk for each sample and cell cluster
pb <- aggregateToPseudoBulk(example_sce,
assay = "counts",
cluster_id = "cluster_id",
sample_id = "sample_id",
verbose = FALSE
)
# voom-style normalization
res.proc <- processAssays(pb, ~group_id)
# Differential expression analysis within each assay,
# evaluated on the voom normalized data
res.dl <- dreamlet(res.proc, ~group_id)
# extract typical residuals for each assay (i.e. cell type)
# Return list with entry for each assay with for retained samples and genes
resid.lst <- residuals(res.dl)
# Get Pearson residuals:
# typical residuals scaled by the standard deviation
residPearson.lst <- residuals(res.dl, res.proc, type = "pearson")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.