Returns averaged expression values for each identity class.
AverageExpression(
object,
assays = NULL,
features = NULL,
return.seurat = FALSE,
group.by = "ident",
add.ident = NULL,
layer = "data",
slot = deprecated(),
verbose = TRUE,
...
)
Returns a matrix with genes as rows, identity classes as columns.
If return.seurat is TRUE, returns an object of class Seurat
.
Seurat object
Which assays to use. Default is all assays
Features to analyze. Default is all features in the assay
Whether to return the data as a Seurat object. Default is FALSE
Category (or vector of categories) for grouping (e.g, ident, replicate, celltype); 'ident' by default To use multiple categories, specify a vector, such as c('ident', 'replicate', 'celltype')
(Deprecated). Place an additional label on each cell prior to pseudobulking
Layer(s) to use; if multiple layers are given, assumed to follow the order of 'assays' (if specified) or object's assays
(Deprecated). Slots(s) to use
Print messages and show progress bar
Arguments to be passed to methods such as CreateSeuratObject
If layer is set to 'data', this function assumes that the data has been log
normalized and therefore feature values are exponentiated prior to averaging
so that averaging is done in non-log space. Otherwise, if layer is set to
either 'counts' or 'scale.data', no exponentiation is performed prior to averaging.
If return.seurat = TRUE
and layer is not 'scale.data', averaged values
are placed in the 'counts' layer of the returned object and 'log1p'
is run on the averaged counts and placed in the 'data' layer ScaleData
is then run on the default assay before returning the object.
If return.seurat = TRUE
and layer is 'scale.data', the 'counts' layer contains
average counts and 'scale.data' is set to the averaged values of 'scale.data'.
data("pbmc_small")
head(AverageExpression(object = pbmc_small)$RNA)
head(AverageExpression(object = pbmc_small, group.by = c('ident', 'groups'))$RNA)
Run the code above in your browser using DataLab