ratioFilter-methods           package:xps           R Documentation

_R_a_t_i_o _F_i_l_t_e_r

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

     This method initializes the Ratio Filter. The ratio is the maximum
     value divided by minimum value for each row of the expression
     dataframe. 
      The Ratio Filter flags all rows with: 'flag = (max/min >=
     cutoff)'

     _Usage_

     'ratioFilter(object)' 
      'ratioFilter(object, value)<-'

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

  object: object of class 'PreFilter'.

   value: numeric value 'c(cutoff)'.

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

     The method 'ratioFilter' initializes the following parameters:

         'cutoff':  the cutoff level for the filter.

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

     An initialized 'PreFilter' object.

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

     Christian Stratowa

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

     prefltr <- PreFilter()
     ratioFilter(prefltr) <- c(1.5)
     str(prefltr)

