-------------------------------------------------------------------------------
      log:  C:\hochberg2.log
  log type:  text
opened on:  14 Mar 2014, 10:08:58

* input some raw p-values and do a hochberg adjustment

. input raw_p

        raw_p
  1. .147
  2. .005
  3. .002
  4.
. end

. multproc, pval (raw_p) method(hochberg) crit(CV) reject(rej) puncor(.05)

Method: hochberg
Uncorrected overall critical P-value: .05
Number of P-values: 3
Corrected overall critical P-value: .025
Number of rejected P-values: 2

. list

    +-------------------------+
    | raw_p          CV  rej |
    |-------------------------|
  1. |  .147        .05    0 |
  2. |  .005        .025    1 |
  3. |  .002  .01666667    1 |
    +-------------------------+