Draw a box plot for read count data of a metadata variable
plot_readcount(
seu,
metavar = "nCount_RNA",
color.by = "batch",
yscale = "linear",
return_plotly = FALSE,
...
)
A seurat object
Metadata variable to plot. Default set to "nCount_RNA"
Variable to color bins by. Default set to "batch"
Scale of y axis. Default set to "linear"
whether to return an interactive ploly plot. Default set to FALSE
# interactive plotly
plot_readcount(human_gene_transcript_seu, return_plotly = TRUE)
#> Error in element_blank(): could not find function "element_blank"
# static plot
plot_readcount(human_gene_transcript_seu, return_plotly = FALSE)
#> Error in element_blank(): could not find function "element_blank"