MTP-class              package:multtest              R Documentation

_C_l_a_s_s "_M_T_P", _c_l_a_s_s_e_s _a_n_d _m_e_t_h_o_d_s _f_o_r _m_u_l_t_i_p_l_e _t_e_s_t_i_n_g _p_r_o_c_e_d_u_r_e _o_u_t_p_u_t

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

     An object of class MTP is the output of a particular multiple
     testing procedure, for example, generated by the MTP function. It
     has slots for the various data used to make multiple testing
     decisions, such as adjusted p-values and confidence regions.

_O_b_j_e_c_t_s _f_r_o_m _t_h_e _C_l_a_s_s:

     Objects can be created by calls of the form 
      new('MTP', 
      statistic = ...., object of class numeric
      estimate  = ...., object of class numeric
      sampsize  = ...., object of class numeric
      rawp      = ...., object of class numeric
      adjp      = ...., object of class numeric
      conf.reg  = ...., object of class array
      cutoff    = ...., object of class matrix
      reject    = ...., object of class matrix
      nulldist  = ...., object of class matrix
      call      = ...., object of class call
      seed      = ...., object of class integer
      )

_S_l_o_t_s:

     '_s_t_a_t_i_s_t_i_c': Object of class 'numeric', observed test statistics
          for each hypothesis, specified by the values of the 'MTP'
          arguments 'test', 'robust', 'standardize', and 'psi0'.

     '_e_s_t_i_m_a_t_e': For the test of single-parameter null hypotheses using
          t-statistics (i.e., not the F-tests), the numeric vector of
          estimated parameters corresponding to each hypothesis, e.g.
          means, differences in means, regression parameters.

     '_s_a_m_p_s_i_z_e': Object of class 'numeric', number of columns (i.e.
          observations) in the input data set.

     '_r_a_w_p': Object of class 'numeric', unadjusted, marginal p-values
          for each hypothesis.

     '_a_d_j_p': Object of class 'numeric', adjusted (for multiple testing)
          p-values for each hypothesis (computed only if the 'get.adjp'
          argument is TRUE).

     '_c_o_n_f._r_e_g': For the test of single-parameter null hypotheses using
          t-statistics (i.e., not the F-tests), the numeric array of
          lower and upper simultaneous confidence limits for the
          parameter vector, for each value of the nominal Type I error
          rate 'alpha' (computed only if the 'get.cr' argument is
          TRUE).

     '_c_u_t_o_f_f': The numeric matrix of cut-offs for the vector of test
          statistics for each value of the nominal Type I error rate
          'alpha' (computed only if the 'get.cutoff' argument is TRUE).

     '_r_e_j_e_c_t': Object of class 'matrix', rejection indicators (TRUE for
          a rejected null hypothesis), for each value of the nominal
          Type I error rate 'alpha'.

     '_n_u_l_l_d_i_s_t': The numeric matrix for the estimated test statistics
          null distribution (returned only if 'keep.nulldist=TRUE';
          option not currently available for permutation null
          distribution, i.e.,  'nulldist="perm"'). By default (i.e.,
          for 'nulldist="boot"'), the entries of 'nulldist' are the
          null value shifted and scaled bootstrap test statistics, with
          one null test statistic value for each hypothesis (rows) and
          bootstrap iteration (columns).

     '_c_a_l_l': Object of class 'call', the call to the MTP function.

     '_s_e_e_d': An integer for specifying the state of the random number
          generator used to create the resampled datasets. The seed can
          be reused for reproducibility in a repeat call to 'MTP'. This
          argument is currently used only for the bootstrap null
          distribution (i.e., for 'nulldist="boot"'). See '? set.seed'
          for details.

_M_e_t_h_o_d_s:

     'signature(x = "MTP")' 

     [ : Subsetting method for 'MTP' class, which operates selectively
          on each slot of an 'MTP' instance to retain only the data
          related to the specified hypotheses.

     _a_s._l_i_s_t : Converts an object of class 'MTP' to an object of class
          'list', with an entry for each slot.

     _p_l_o_t : plot methods for 'MTP' class, produces the following
          graphical summaries of the results of a MTP. The type of
          display may be specified via the 'which' argument. 

          1. Scatterplot of number of rejected hypotheses vs. nominal
          Type I error rate. 

          2. Plot of ordered adjusted p-values; can be viewed as a plot
          of Type I error rate vs. number of rejected hypotheses. 

          3. Scatterplot of adjusted p-values vs. test statistics (also
          known as "volcano plot"). 

          4. Plot of unordered adjusted p-values. 

          5. Plot of confidence regions for user-specified parameters,
          by default the 10 parameters corresponding to the smallest
          adjusted p-values  (argument 'top'). 

          6. Plot of test statistics and corresponding cut-offs (for
          each value of 'alpha') for user-specified hypotheses, by
          default the 10 hypotheses corresponding to the smallest
          adjusted p-values (argument 'top'). 

          The argument 'logscale' (by default equal to FALSE) allows
          one to use the negative decimal logarithms of the adjusted
          p-values in the second, third, and fourth graphical displays.
          The arguments 'caption' and 'sub.caption' allow one to change
          the titles and subtitles for each of the plots (default
          subtitle is the MTP function call). Note that some of these
          plots are implemented in the older function 'mt.plot'.

     _p_r_i_n_t : print method for 'MTP' class, returns a description of an
          object of class 'MTP', including sample size, number of
          tested hypotheses, type of test performed (value of argument
          'test'), Type I error rate (value of argument 'typeone'),
          nominal level of the test  (value of argument 'alpha'), name
          of the MTP  (value of argument 'method'), call to the
          function 'MTP'.

          In addition, this method produces a table with the class,
          mode, length, and dimension of each slot of the 'MTP'
          instance. 


     _s_u_m_m_a_r_y : summary method for 'MTP' class, provides numerical
          summaries of the results of a MTP and returns a list with the
          following three components. 

          1. rejections: A data.frame with the number(s) of rejected
          hypotheses for the nominal Type I error rate(s) specified by
          the 'alpha' argument of the function 'MTP'. (NULL values are
          returned if all three arguments 'get.cr', 'get.cutoff', and
          'get.adjp' are FALSE). 

          2. index: A numeric vector of indices for ordering the
          hypotheses according to first 'adjp', then 'rawp', and
          finally the absolute value of 'statistic' (not printed in the
          summary). 


          3. summaries: When applicable (i.e., when the corresponding
          quantities are returned by 'MTP'), a table with six number
          summaries of the distributions of the adjusted p-values,
          unadjusted p-values, test statistics, and parameter
          estimates.

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

     Katherine S. Pollard, <URL: http://lowelab.ucsc.edu/katie/> 
      with design contributions from Sandrine Dudoit and Mark J. van
     der Laan.

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

     M.J. van der Laan, S. Dudoit, K.S. Pollard (2004), Augmentation
     Procedures for Control of the Generalized Family-Wise Error Rate
     and Tail Probabilities for the Proportion of False Positives,
     Statistical Applications in Genetics and Molecular Biology, 3(1). 
     <URL: http://www.bepress.com/sagmb/vol3/iss1/art15/>

     M.J. van der Laan, S. Dudoit, K.S. Pollard (2004), Multiple
     Testing. Part II. Step-Down Procedures for Control of the
     Family-Wise Error Rate, Statistical Applications in Genetics and
     Molecular Biology, 3(1). <URL:
     http://www.bepress.com/sagmb/vol3/iss1/art14/>

     S. Dudoit, M.J. van der Laan, K.S. Pollard (2004), Multiple
     Testing. Part I. Single-Step Procedures for Control of General
     Type I Error Rates, Statistical Applications in Genetics and
     Molecular Biology, 3(1). <URL:
     http://www.bepress.com/sagmb/vol3/iss1/art13/>

     Katherine S. Pollard and Mark J. van der Laan, "Resampling-based
     Multiple Testing: Asymptotic Control of Type I Error and
     Applications to Gene Expression Data" (June 24, 2003). U.C.
     Berkeley Division of Biostatistics Working Paper Series. Working
     Paper 121. <URL: http://www.bepress.com/ucbbiostat/paper121>

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

     'MTP', 'MTP-methods', '[-methods', 'as.list-methods',
     'print-methods', 'plot-methods', 'summary-methods'

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

     ## See MTP function: ? MTP

