normalizeQuantiles           package:limma           R Documentation

_N_o_r_m_a_l_i_z_e _C_o_l_u_m_n_s _o_f _a _M_a_t_r_i_x _t_o _h_a_v_e _t_h_e _s_a_m_e _Q_u_a_n_t_i_l_e_s

_D_e_s_c_r_i_p_t_i_o_n:

     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 'normalizeBetweenArrays' instead.

_U_s_a_g_e:

     normalizeQuantiles(A, ties=TRUE)

_A_r_g_u_m_e_n_t_s:

       A: numeric matrix. Missing values are allowed.

    ties: logical. If 'TRUE', ties in each column of 'A' are treated in
          careful way. tied values will be normalized to the mean of
          the corresponding pooled quantiles.

_D_e_t_a_i_l_s:

     This function is intended to normalize single channel or A-value
     microarray intensities between arrays. Each quantile of each
     column is set to the mean of that quantile across arrays. 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.

_V_a_l_u_e:

     A matrix of the same dimensions as 'A' containing the normalized
     values.

_A_u_t_h_o_r(_s):

     Gordon Smyth

_R_e_f_e_r_e_n_c_e_s:

     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.

_S_e_e _A_l_s_o:

     An overview of LIMMA functions for normalization is given in
     05.Normalization.

