causton               package:GraphAT               R Documentation

_Y_e_a_s_t _m_R_N_A _E_x_p_r_e_s_s_i_o_n _D_a_t_a

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

     This data set contains mRNA expression from a microarray
     experiment involving yeast grown under a variety of altered
     environments (e.g. acid, heat, sorbitol, etc.)

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

     data(causton)

_F_o_r_m_a_t:

     A matrix whose rows are the 6015 genes and whose columns are the
     45 experimental conditions.

_S_o_u_r_c_e:

     <URL: http://web.wi.mit.edu/young/environment>

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

     Causton, H. C. et al. 2001 ``Remodeling of Yeast Genome Expression
     in Response to Environmental Changes.'' Molecular Biology of the
     Cell *12*, 323-337.

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

     data(causton)

     ## Find the 3000 most variable genes, according to sd/mean:

     varMeas<-function(vec){
     sd(vec)/mean(vec)}
     variability<-apply(causton,1,varMeas)

     rks<-rank(variability)

     causton3000<-causton[rks>length(rownames(causton))-3000,]

