This function plots the differences in abundance data before and after data processing.
Arguments
- se
A SummarizedExperiment object construct by
as_summarized_experiment
.- processed_se
A SummarizedExperiment object constructed by
as_summarized_experiment
and processed bydata_process
.
Value
Return a list with 4 static plots and 4 interactive plots.
static_boxPlot_before: a static bar plot of lipid abundance before data processing.
static_densityPlot_before: a static density plot of lipid abundance before data processing.
static_boxPlot_after: a static bar plot of lipid abundance before data processing.
static_densityPlot_after: a static density plot of lipid abundance after data processing.
interactive_boxPlot_before: an interactive bar plot of lipid abundance before data processing.
interactive_densityPlot_before: an interactive density plot of lipid abundance before data processing.
interactive_boxPlot_after: an interactive bar plot of lipid abundance after data processing.
interactive_densityPlot_after: an interactive density plot of lipid abundance after data processing.
Examples
data("profiling_data")
processed_se <- data_process(
profiling_data, exclude_missing=TRUE, exclude_missing_pct=70,
replace_na_method='min', replace_na_method_ref=0.5,
normalization='Percentage', transform='log10')
plots <- plot_data_process(profiling_data, processed_se)