Description Usage Arguments Value Author(s) Examples
View source: R/plots_compare_Norm.R
Plot to compare the quantitative proteomics data before and after
normalization using the library highcharter
1 2 3 4 5 6 7 8 9 10 |
qDataBefore |
A dataframe that contains quantitative data before normalization. |
qDataAfter |
A dataframe that contains quantitative data after normalization. |
keyId |
xxx |
conds |
A vector of the conditions (one condition per sample). |
palette |
xxx |
subset.view |
xxx |
n |
An integer that is equal to the maximum number of displayed points. This number must be less or equal to the size of the dataset. If it is less than it, it is a random selection |
type |
scatter or line |
A plot
Samuel Wieczorek
1 2 3 4 5 6 7 8 9 | utils::data(Exp1_R25_prot, package='DAPARdata')
obj <- Exp1_R25_prot
qDataBefore <- Biobase::exprs(obj)
conds <- Biobase::pData(obj)[,"Condition"]
id <- Biobase::fData(obj)[,obj@experimentData@other$proteinId]
objAfter <- wrapper.normalizeD(obj, method = "QuantileCentering", conds =conds, type = "within conditions")
compareNormalizationD_HC(qDataBefore=qDataBefore, qDataAfter=Biobase::exprs(objAfter), keyId = id, conds=conds, n=100)
compareNormalizationD_HC(qDataBefore=qDataBefore, qDataAfter=Biobase::exprs(objAfter), keyId = id, subset.view=1:4, conds=conds, n=100)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.