plotCounts | R Documentation |
Plot counts
plotCounts(object, ...)
## S4 method for signature 'bcbioRNASeq'
plotCounts(
object,
genes,
normalized = c("tpm", "sf", "fpkm", "vst", "rlog", "tmm", "rle"),
...
)
object |
Object. |
genes |
|
normalized |
tximport caller-specific normalizations:
Additional gene-level-specific normalizations:
Note that |
... |
Passthrough to |
style = "facet"
: ggplot
grouped by sampleName
, with
ggplot2::facet_wrap()
applied to panel the samples.
style = "wide"
: ggplot
in wide format, with genes on the x-axis.
Updated 2022-03-07.
Michael Steinbaugh
Seurat::DotPlot()
.
Seurat::VlnPlot()
.
Seurat::RidgePlot()
.
monocle3::plot_genes_violin()
.
data(bcb)
## bcbioRNASeq ====
g2s <- AcidGenerics::GeneToSymbol(bcb)
geneIds <- head(g2s[["geneId"]])
print(geneIds)
geneNames <- head(g2s[["geneName"]])
print(geneNames)
plotCounts(bcb, genes = geneIds, style = "facet")
plotCounts(bcb, genes = geneNames, style = "wide")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.