plotCountsCorrelation | R Documentation |
Compare feature expression correlation across two data sets.
plotCountsCorrelation(x, y, ...)
## S4 method for signature 'matrix,matrix'
plotCountsCorrelation(
x,
y,
i = NULL,
j = NULL,
xName = "x",
yName = "y",
labels = list(title = NULL, subtitle = NULL, color = NULL, x = NULL, y = "counts")
)
x |
Object. |
y |
Object. |
i |
Indices specifying elements to extract or replace. Indices are For more information: help(topic = "Extract", package = "base") |
j |
Indices specifying elements to extract or replace. Indices are For more information: help(topic = "Extract", package = "base") |
xName , yName |
|
labels |
|
... |
Additional arguments. |
Graphical output.
Updated 2023-10-05.
data(RangedSummarizedExperiment, package = "AcidTest")
## matrix ====
x <- SummarizedExperiment::assay(RangedSummarizedExperiment)
x <- x[seq_len(4L), seq_len(2L)]
y <- x * 2L
plotCountsCorrelation(x, y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.