normalize | R Documentation |
This function calculates log-normalized size-factor-adjusted counts that
are defined in logcounts()
from the raw, non-normalized count matrix
defined in counts()
.
normalize(object, ...)
## S4 method for signature 'SingleCellExperiment'
normalize(object)
object |
Object. |
... |
Additional arguments. |
If no library size factors are defined in sizeFactors()
, these values will
be computed internally automatically using
scuttle::computeLibraryFactors()
.
Modified object.
Updated 2022-03-02.
AcidExperiment::estimateSizeFactors()
.
scuttle::computeLibraryFactors()
.
scuttle::logNormCounts()
.
scuttle::librarySizeFactors()
.
scuttle::geometricSizeFactors()
.
scuttle::medianSizeFactors()
.
Seurat::NormalizeData()
.
monocle3::preprocess_cds()
.
monocle3::normalized_counts()
.
SingleCellExperiment::normcounts()
.
SingleCellExperiment::logcounts()
.
data(SingleCellExperiment_splatter, package = "AcidTest")
## SingleCellExperiment ====
object <- SingleCellExperiment_splatter
object <- normalize(object)
head(BiocGenerics::sizeFactors(object))
SingleCellExperiment::logcounts(object)[seq_len(2L), seq_len(2L)]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.