Output2HTML            package:ArrayTools            R Documentation

_C_r_e_a_t_i_n_g _H_T_M_L _f_i_l_e _f_o_r _r_e_g_r_e_s_s_R_e_s_u_l_t _o_r _i_n_t_e_r_a_c_t_i_o_n_R_e_s_u_l_t _c_l_a_s_s

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

     Creating HTML file for regressResult or interactionResult class

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

     Output2HTML(object, ...)

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

  object: an regressResult or interactionResult class

     ...: you can specify the directory to store the result by using
          the 'mydir' argument.  The default value of  'mydir' is the
          current working directory

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

     creating an HTML file

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

     Xiwei Wu, Arthur Li

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

     data(eSetExample)
     design<- new("designMatrix", target=pData(eSetExample), covariates = "Treatment")
     contrast<- new("contrastMatrix", design.matrix = design, 
         compare1 = "Treated", compare2 = "Control")
     result<- regress(eSetExample, contrast)
     sigResult<- selectSigGene(result, fc.value=log2(2)) 
     ## Not run: Output2HTML(sigResult)

