createBoxplot | R Documentation |
The function create_boxplot
creates a boxplot per sample for the
intensity/count values.
createBoxplot(
se,
orderCategory = colnames(colData(se)),
title = "",
log = TRUE,
violin = FALSE
)
se |
|
orderCategory |
|
title |
|
log |
|
violin |
|
Internal usage in shinyQC
.
gg
object from ggplot2
## create se
a <- matrix(seq_len(100), nrow = 10, ncol = 10,
dimnames = list(seq_len(10), paste("sample", seq_len(10))))
a[c(1, 5, 8), seq_len(5)] <- NA
set.seed(1)
a <- a + rnorm(100)
cD <- data.frame(name = colnames(a), type = c(rep("1", 5), rep("2", 5)))
rD <- data.frame(spectra = rownames(a))
se <- SummarizedExperiment::SummarizedExperiment(assay = a,
rowData = rD, colData = cD)
createBoxplot(se, orderCategory = "name", title = "", log = TRUE,
violin = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.