createExpressionSet        package:ArrayTools        R Documentation

_C_r_e_a_t_i_n_g _a_n _E_x_p_r_e_s_s_i_o_n_S_e_t

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

     Create an 'ExpressionSet' based on phenotype data and expression
     data

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

     createExpressionSet(pData, exprs, ...)

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

   pData: a data frame contains the phenotype data

   exprs: a data frame contains the expression data

     ...: addtional arguments passed to 'new("ExpressionSet", exprs,
          phenoData, ...)' if needed 

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

     an 'ExpressionSet'

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

     Xiwei Wu, Arthur Li

_R_e_f_e_r_e_n_c_e_s:

     Bioconductor: Open software development for computational biology
     and bioinformatics R. Gentleman, V. J. Carey, D. M. Bates,
     B.Bolstad, M. Dettling, S. Dudoit, B. Ellis, L. Gautier, Y. Ge,
     and others 2004, Genome Biology, Vol. 5, R80

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

     ExpressionSet

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

       data(pDataExample)
       data(exprsExample)
       eSet <- createExpressionSet (pDataExample, exprsExample, 
           annotation = "hugene10sttranscriptcluster")

