LBEwrite                 package:LBE                 R Documentation

_W_r_i_t_e _t_h_e _r_e_s_u_l_t_s _o_f _a_n _L_B_E _o_b_j_e_c_t _t_o _a _f_i_l_e.

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

     Write the results of an LBE object to a file.

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

     LBEwrite(LBEobj, filename = "LBE-results.txt")

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

  LBEobj: LBE object 

filename: Output filename (optional) 

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

     The output file lists the estimate of pi0, which is the proportion
     of true null hypotheses. It also lists each p-value and
     corresponding q-value, one per line. If an FDR significance level
     was specified in the call to qvalue, the significance level is
     printed below the estimate of pi0, and an indicator of
     significance is included as a third column for each p-value and
     q-value.

_N_o_t_e:

     The function LBEwrite is analogous to the function qwrite from the
     package {qvalue}.

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

     Cyril Dalmasso

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

     'LBE', 'LBEplot', 'LBEsummary', 'LBEa'

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

     ## start
     data(hedenfalk.pval)
     res<-LBE(hedenfalk.pval)
     LBEwrite(res,filename="myresults.txt")
     ## end

