multTestAdjust           package:RNAither           R Documentation

_A_d_j_u_s_t _p-_v_a_l_u_e_s _f_o_r _m_u_l_t_i_p_l_e _t_e_s_t_i_n_g

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

     Adjusts p-values for multiple testing.

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

     multTestAdjust(pValVec, adjustMethod)

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

 pValVec: a vector of p-values 

adjustMethod: one of the following: ' "holm", "hochberg", "hommel",
          "bonferroni", "BH", "BY", "fdr", "none"'. For details type
          '?p.adjust'

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

     Returns a vector of corrected p-values. Can be integrated into a
     dataframe with the function 'incorporatepValVec'.

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

     'incorporatepValVec', 'Ttest'

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

     data(pValVec1, package="RNAither")

     ##for details on the generation of pValVec1, see the example of the Ttest function linked above.

     newpvalvec <- multTestAdjust(pValVec1,"fdr")

