Description Usage Arguments Details Value Author(s) References See Also
Normalize the columns of a matrix to have the same quantiles, allowing for missing values.
Users do not normally need to call this function directly - use normalize.AffyBatch.normalize2Reference
instead.
1 | normalize2Reference(data, refData = NULL, ties = TRUE)
|
data |
numeric matrix. Missing values are allowed. |
refData |
A vector of reference values. |
ties |
logical. If |
This function is intended to normalize single channel or A-value microarray intensities between arrays.
Each quantile of each column is set to either: quantiles of the reference distribution (refData
supplied) or the mean of that quantile across arrays (refData
is NULL
) .
The intention is to make all the normalized columns have the same empirical distribution.
This will be exactly true if there are no missing values and no ties within the columns: the normalized columns are then simply permutations of one another.
If there are ties amongst the intensities for a particular array, then with ties=FALSE
the ties are broken in an unpredictable order.
If ties=TRUE
, all the tied values for that array will be normalized to the same value, the average of the quantiles for the tied values.
A matrix of the same dimensions as A
containing the normalized values.
Max Kuhn, adapted from Gordon Smyth
Bolstad, B. M., Irizarry R. A., Astrand, M., and Speed, T. P. (2003), A comparison of normalization methods for high density oligonucleotide array data based on bias and variance. Bioinformatics 19, 185-193.
normalize.AffyBatch.normalize2Reference
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.