renorm                package:PROcess                R Documentation

_R_e_n_o_r_m_a_l_i_z_e _S_p_e_c_t_r_a

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

     Renormalize spectra for m/z values greater than `cutoff'.

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

     renorm(Ma, cutoff)

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

      Ma: a matrix, with rows the m/z values and the columns the
          samples.

  cutoff: a real value, before which the portion of a spectrum will be
          ignored.

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

     A sample of spectra will be normalized to have the same AUC, the
     median of the AUCs of spectra. Each AUC is calculated as the sum
     of the intensities whose m/z values are greater than `cutoff'.

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

     A matrix, with rows the m/z values and the columns the samples.
     Only rows with m/z values greater than `cutoff' are kept.

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

     example(rmBaseline)
     rtM <- renorm(testM, cutoff=1500)

