QuantileCentering | R Documentation |
Normalisation QuantileCentering
QuantileCentering(
qData,
conds = NULL,
type = "overall",
subset.norm = NULL,
quantile = 0.15
)
qData |
xxx |
conds |
xxx |
type |
"overall" (shift all the sample distributions at once) or "within conditions" (shift the sample distributions within each condition at a time). |
subset.norm |
A vector of index indicating rows to be used for normalization |
quantile |
A float that corresponds to the quantile used to align the data. |
A normalized numeric matrix
Samuel Wieczorek, Thomas Burger, Helene Borges, Anais Courtier, Enora Fremy
data(Exp1_R25_pept, package="DAPARdata")
obj <- Exp1_R25_pept
conds <- Biobase::pData(Exp1_R25_pept)$Condition
normalized <- QuantileCentering(Biobase::exprs(obj), conds,
type = "within conditions", subset.norm = seq_len(10)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.