maSelectGnames            package:marray            R Documentation

_S_e_l_e_c_t _g_e_n_e_s _a_c_c_o_r_d_i_n_g _t_o _t_h_e _v_a_l_u_e_s _o_f _a _f_e_w _d_i_f_f_e_r_e_n_t _s_t_a_t_i_s_t_i_c_s

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

     Select genes by considering the 'union' or 'intersect' of multiple
     statistics.

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

     maSelectGnames(statdata, crit1 = 50, crit2 = crit1, sub = TRUE, selectstat, operate = c("intersect", "union"))

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

statdata: A numerical matrix where the rows corresponds to genes and
          the columns corresponds to various statistics corresponding
          to a particular gene.

   crit1: The number of points to be selected. If crit1 < 1, the
          crit1*100% spots with the smallest M values will be selected.
          If crit1 >= 1, the crit spots  with the smallest M values are
          selected.

   crit2: Similar to "crit1".   If crit2 < 1, the crit2*100% spots with
          the largest M values will be selected. If crit2 >= 1, the
          crit2 spots with the largest M values are selected.

     sub: A "logical" or "numeric" vector indicating the subset of
          genes to be consider.

selectstat: A integer value indicating the statistics where the final
          ranking is based on.

 operate: The operation used to combined different rankings

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

     This functions calls 'stat.gnames' to select say the 100 most
     extreme genes from various statistics and combined the different
     gene lists by either union or intersection.

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

     A vector of numeric values.

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

     Jean Yee Hwa Yang

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

     'stat.gnames', 'order'

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

     X <- matrix(rnorm(1000), 100,10)
     Xstat <- cbind(mean=apply(X, 1, mean, na.rm=TRUE),
                    var=apply(X, 1, var, na.rm=TRUE))
     maSelectGnames(Xstat, crit1=50)

