View source: R/plotBatchVariance.R
plotBatchVariance | R Documentation |
Visualize the percent variation in the data that is explained by batch and condition if it is given.
plotBatchVariance(inSCE, useAssay = "logcounts", batch, condition = NULL)
inSCE |
Input SCtkExperiment object. Required |
useAssay |
Indicate which assay to use for PCA. Default is "logcounts" |
batch |
The column in the annotation data that corresponds to batch. Required |
condition |
The column in the annotation data that corresponds to condition. Optional |
A boxplot of variation explained by batch, condition, and batch+condition (if applicable).
if(requireNamespace("bladderbatch", quietly = TRUE)) { library(bladderbatch) data(bladderdata) dat <- as(as(bladderEset, "SummarizedExperiment"), "SCtkExperiment") plotBatchVariance(dat, useAssay="exprs", batch="batch", condition = "cancer") }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.