plotCountsPerCell | R Documentation |
Plot the disambiguated counts per cell.
plotCountsPerCell(object, ...)
## S4 method for signature 'SingleCellExperiment'
plotCountsPerCell(
object,
geom = c("histogram", "ecdf", "violin", "ridgeline", "boxplot"),
interestingGroups = NULL,
min = 0L,
max = Inf,
point = c("none", "inflection", "knee"),
trans = "log10",
title = "Counts per cell"
)
object |
Object. |
geom |
|
interestingGroups |
|
min |
|
max |
|
point |
|
trans |
For more information: help(topic = "scale_x_continuous", package = "ggplot2") |
title |
|
... |
Additional arguments. |
"Counts" refer to universal molecular identifier (UMI) counts for droplet-based scRNA-seq data.
ggplot
.
Updated 2023-08-11.
Michael Steinbaugh, Rory Kirchner
plotCountsVsFeatures()
.
data(SingleCellExperiment_splatter, package = "AcidTest")
## SingleCellExperiment ====
object <- SingleCellExperiment_splatter
plotCountsPerCell(object, geom = "violin")
plotCountsPerCell(object, geom = "ridgeline")
plotCountsPerCell(object, geom = "ecdf")
plotCountsPerCell(object, geom = "histogram")
plotCountsPerCell(object, geom = "boxplot")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.