neweS                 package:LMGene                 R Documentation

_C_o_e_r_c_i_n_g _t_o _e_x_p_r_S_e_t _f_u_n_c_t_i_o_n

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

     This function converts a matrix data and its experimental data
     into an object of 'exprSet' class.

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

     neweS(mat, vlist, vlabel = as.list(names(vlist)))

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

     mat: A matrix data to be converted 

   vlist: A list which contains several factors representing the
          experiment description 

  vlabel: A list of labels for the variables represented by the columns
          of 'pData' of the 'exprSet' object to be made 

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

     Must load Biobase package first for converting. 
      'vlist' contains all the considered factors in which level values
     of each element represent the corresponding column of 'mat'.

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

   eset : The converted object of 'exprSet' class

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

     David Rocke and Geun-Cheol Lee

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

     <URL: http://www.idav.ucdavis.edu/~dmrocke/>

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

     'as'

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

     #library
     library(Biobase)
     library(LMGene)

     #data
     data(sample.mat)
     data(vlist)

     Smpdt<-neweS(sample.mat,vlist)

     data(sample.eS)
     identical(sample.eS, Smpdt)

