unitestFilter-methods          package:xps          R Documentation

_U_n_i_t_e_s_t _F_i_l_t_e_r

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

     This method initializes the Unitest Filter. 
      Applying an unitest such as the 't.test' to two groups returns
     the p-value for the test and the value of the t-statistic. The
     Unitest Filter allows to select only rows satisfying e.g. a
     certain p-value as cutoff. 
      The Unitest Filter flags all rows with: 'flag = (variable <=
     cutoff)'

     _Usage_

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

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

  object: object of class 'UniFilter'.

   value: character vector 'c(cutoff, variable)'.

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

     The method 'unitestFilter' initializes the following parameters:

         'cutoff':    the cutoff level for the filter.
         'variable':  'variable="pval"' (default): p-value.
                      'variable="stat"': univariate statistic.
                      'variable="padj"': optional adjusted p-value.
                      'variable="pcha"': optional p-value obtained by permutations.

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

     An initialized 'UniFilter' object.

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

     Christian Stratowa

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

     unifltr <- UniFilter()
     unitestFilter(unifltr) <- c(0.01,"pval")
     str(unifltr)

