normalizeRobustSpline         package:limma         R Documentation

_N_o_r_m_a_l_i_z_e _S_i_n_g_l_e _M_i_c_r_o_a_r_r_a_y _U_s_i_n_g _S_h_r_u_n_k _R_o_b_u_s_t _S_p_l_i_n_e_s

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

     Normalize the M-values for a single microarray using robustly
     fitted regression splines and empirical Bayes shrinkage.

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

     normalizeRobustSpline(M,A,layout,df=5,method="M")

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

       M: numeric vector of M-values

       A: numeric vector of A-values

  layout: list specifying the dimensions of the spot matrix and the
          grid matrix

      df: degrees of freedom for regression spline, i.e., the number of
          regression coefficients and the number of knots

  method: choices are '"M"' for M-estimation or '"MM"' for high
          breakdown point regression

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

     This function implements an idea similar to print-tip loess
     normalization but uses regression splines in place of the loess
     curves and uses empirical Bayes ideas to shrink the individual
     prtin-tip curves towards a common value. This allows the technique
     to introduce less noise into good quality arrays with little
     spatial variation while still giving good results on arrays with
     strong spatial variation.

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

     Numeric vector containing normalized M-values.

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

     Gordon Smyth

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

     The function is based on unpublished work by the author.

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

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

_E_x_a_m_p_l_e_s:

     library(sma)
     data(MouseArray)
     M <- m.spot(mouse1)
     A <- a.spot(mouse1)
     M <- normalizeRobustSpline(M,A,mouse.setup)

