groupFWHM-methods           package:CAMERA           R Documentation

_F_W_H_M-_G_r_o_u_p_i_n_g _o_f _L_C/_E_S_I-_M_S _d_a_t_a

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

     Grouping the peaks after the FWHM of the retentiontimes into
     pseudospectragroups for a xsAnnotate object. Returns a xsAnnotate
     object with group information.

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

      groupFWHM(object,sigma = 6 , perfwhm = 0.6)

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

  object: the 'xsAnnotate' object

   sigma: the multiplier of the standard deviation

 perfwhm: percentage of the width of the FWHM

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

     The FWHM (full width at half maximum) of a peak, will be used for
     the grouping. Every peak who eluated at the same time as a
     selected peak, will be part of the group. Same time is defined
     about the Rt-med +/-FWHM*perfwhm. FWHM is calculated as the
     product of sigma * standard deviation.

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

     Carsten Kuhl <ckuhl@ipb-halle.de>

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

      library(CAMERA)
      file <- system.file('mzdata/MM14.mzdata', package = "CAMERA")
      xs   <- xcmsSet(file, method="centWave", ppm=30, peakwidth=c(5,10))
      an   <- xsAnnotate(xs)
      an   <- groupFWHM(an)

