ssStatistic               package:XDE               R Documentation

_C_a_l_c_u_l_a_t_e _s_i_n_g_l_e _s_t_u_d_y _e_s_t_i_m_a_t_e_s _o_f _e_f_f_e_c_t _s_i_z_e

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

     Calculate single study estimates of effect size for lists of
     'ExpressionSets'

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

     ssStatistic(statistic = c("t", "sam", "z")[1], phenotypeLabel, esetList, ...)

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

statistic: Character string indicating Welch t-statistic (t), SAM
          (sam), or a z-statistic (z)

phenotypeLabel: Character string indicating the name of the binary
          covariate

esetList: An object of class 'ExpressionSetList'

     ...: Not implemented. Potentially additional arguments to the
          above methods that are implemented in other packages

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

     This function is a wrapper that provides an estimate of effect
     size for each study (element) in an 'ExpressionSetList' object.

     For Welch t-statistic, this function is a wrapper for mt.teststat
     in the multtest package.

     For SAM, this function is a wrapper for the sam function in the
     siggenes package.

     The "z" statistic is a standardized unbiased estimate of effect
     size (Hedges and Olkin, 1985) - implementation is in the zScores
     function in the R package GeneMeta.

     See the complete references below.

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

     A matrix: rows are genes and columns are studies

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

     R. Scharpf

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

     J.K. Choi, U. Yu, S. Kim, and O.J. Yoo (2003), Combining multiple
     microarray studies and modeling interstudy variation,
     Bioinformatics, 19(1) I84-I90.

     Y. Ge, S. Dudoit & T. P. Speed (2003), Resampling-based multiple
     testing for microarray data hypothesis Test 12(1) : 1-44 (with
     discussions on 44-77).

     L. Lusa R. Gentleman, and M. Ruschhaupt, GeneMeta: MetaAnalysis
     for High Throughput Experiments

     L.V. Hedges and I. Olkin, Statistical Methods for Meta-analysis
     (1985), Academic Press

     Tusher, Tibshirani and Chu (2001), Significance analysis of
     microarrays applied to the ionizing radiation response, PNAS 2001
     98: 5116-5121, (Apr 24).

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

     data(expressionSetList)
     if(require(multtest)){
       t <- ssStatistic("t", esetList=expressionSetList, phenotypeLabel="adenoVsquamous")
     }  

