pair_corr: Pairwise scatter and correlation plot of counts

Description Usage Arguments Value Examples

View source: R/pair_corr.R

Description

Pairwise scatter and correlation plot of counts

Usage

1
pair_corr(df, log = FALSE, method = "pearson", use_subset = TRUE)

Arguments

df

A data frame, containing the (raw/normalized/transformed) counts

log

Logical, whether to convert the input values to log2 (with addition of a pseudocount). Defaults to FALSE.

method

Character string, one of pearson (default), kendall, or spearman as in cor

use_subset

Logical value. If TRUE, only 1000 values per sample will be used to speed up the plotting operations.

Value

A plot with pairwise scatter plots and correlation coefficients

Examples

1
2
3
4
5
6
7
library(airway)
data(airway)
airway
dds_airway <- DESeq2::DESeqDataSetFromMatrix(assay(airway),
                                             colData = colData(airway),
                                             design = ~dex+cell)
pair_corr(counts(dds_airway)[1:100, ]) # use just a subset for the example

pcaExplorer documentation built on Nov. 8, 2020, 5:29 p.m.