plot_normalization: Visualize normalization

Description Usage Arguments Value Examples

View source: R/plot_functions_QC.R

Description

plot_normalization generates boxplots of all conditions for input objects, e.g. before and after normalization.

Usage

1

Arguments

se

SummarizedExperiment, Data object, e.g. before normalization (output from make_se() or make_se_parse()).

...

Additional SummarizedExperiment object(s), E.g. data object after normalization (output from normalize_vsn).

Value

Boxplots of all conditions for input objects, e.g. before and after normalization (generated by ggplot). Adding components and other plot adjustments can be easily done using the ggplot2 syntax (i.e. using '+')

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
# Load example
data <- UbiLength
data <- data[data$Reverse != "+" & data$Potential.contaminant != "+",]
data_unique <- make_unique(data, "Gene.names", "Protein.IDs", delim = ";")

# Make SummarizedExperiment
columns <- grep("LFQ.", colnames(data_unique))
exp_design <- UbiLength_ExpDesign
se <- make_se(data_unique, columns, exp_design)

# Filter and normalize
filt <- filter_missval(se, thr = 0)
norm <- normalize_vsn(filt)

# Plot normalization
plot_normalization(se, filt, norm)

arnesmits/DEP documentation built on Aug. 7, 2019, 10:44 a.m.