File size: 15,575 Bytes
f7e17b7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 | #delim ;
prog def multproc,rclass byable(onecall) sortpreserve;
version 10.0;
/*
Multiple test procedures.
Take, as input, a data set with 1 obs per null hypothesis tested
and a variable containing the correspoding P-values,
and a specified multiple test procedure method
and a specified uncorrected P-value threshold.
Create, as output, new variables containing P-value ranks,
corresponding critical P-values, and null hypothesis credibility indicators,
and also an overall corrected P-value r(pcor),
such that a null hypothesis with p-value p is incredible
if and only if p<=r(pcor).
*! Author: Roger Newson
*! Date: 08 October 2012
*/
syntax [if] [in] [,
RAnk(string) GPUncor(string) CRitical(string) GPCor(string)
NHcred(string) REJect(string)
FLOAT FAST * ];
/*
-rank- is a new variable generated to contain the ranks of the P-values
(from lowest to highest, with ties sorted in original order).
-gpuncor- is a new variable generated to contain the uncorrected P-value threshold used.
-critical- is a new variable generated to contain critical P-value thresholds
corresponding to the P-values in -pvalue-
(for use in a one-step, step-up or step-down procedure).
-gpcor- is a new variable generated to contain, for all observations in each by-group,
the overall corrected P-value threshold calculated for that by-group.
-nhcred- is a new variable generated to contain an indicator
that the null hypothesis for that observation is credible,
given the choice of uncorrected P-threshold and method.
-reject- is a new variable generated to contain an indicator
that the null hypothesis for that observation is rejected,
given the choice of uncorrected P-threshold and method.
-float- specifies that the critical P-values
in the variables -gpuncor-, -critical- and -gpcor-
will be saved as -float- variables (instead of -double- variables).
-fast- is an option for programmers,
specifying that -multproc- will take no action to restore the pre-existing data set
if the user presses -break-.
All other options are passed to -_multproc- to process each by-group.
*/
if "`fast'"=="" {;preserve;};
*
Define temporary output variables if necessary,
otherwise confirm validity of user-defined output variable names,
and initialise output variables to missing
*;
foreach X of any rank gpuncor critical gpcor nhcred reject {;
if "``X''"=="" {;tempvar `X';};
else {;confirm new variable ``X'';};
};
qui {;
gene long `rank'=.;
gene double `gpuncor'=.;
gene double `critical'=.;
gene double `gpcor'=.;
gene byte `nhcred'=.;
gene byte `reject'=.;
};
*
Call _multproc to do multiple test procedure for each by-group
*;
if !_by() {;local bypref="";};
else {;
local bypref "by `_byvars' `_byrc0':";
};
`bypref' _multproc `if' `in' ,
rank(`rank') gpuncor(`gpuncor') critical(`critical') gpcor(`gpcor')
nhcred(`nhcred') reject(`reject')
`options';
return add;
*
Complete calculation of output variables if processing last by-group
*;
* Convert -double- P-values to -float- if specified *;
if ("`float'"!="") {;
foreach X of var `gpuncor' `critical' `gpcor' {;
qui recast float `X',force;
};
};
* Compress to save space if possible *;
qui compress `rank' `gpuncor' `critical' `gpcor' `nhcred' `reject';
if "`fast'"=="" {;restore,not;};
end;
prog def _multproc,rclass byable(recall);
/*
Do multiple test procedure for each by-group,
assuming that the output variables are already -generate-d
and now only need to be replaced in each by-group.
*/
syntax [if] [in] ,
RAnk(varname) GPUncor(varname) CRitical(varname) GPCor(varname)
NHcred(varname) REJect(varname)
[ PValue(varname numeric) PUncor(string) PCor(string)
MEthod(string)
];
/*
-rank- is a variable generated to contain the ranks of the P-values
(from lowest to highest, with ties sorted in original order).
-gpuncor- is a variable generated to contain the uncorrected P-value threshold used.
-critical- is a variable generated to contain critical P-value thresholds
corresponding to the P-values in -pvalue-
(for use in a one-step, step-up or step-down procedure).
-gpcor- is a variable generated to contain, for all observations in each by-group,
the overall corrected P-value threshold calculated for that by-group.
-nhcred- is a variable generated to contain an indicator
that the null hypothesis for that observation is credible,
given the choice of uncorrected P-threshold and method.
-reject- is a variable generated to contain an indicator
that the null hypothesis for that observation is rejected,
given the choice of uncorrected P-threshold and method.
-pvalue- is the variable containing the P-values.
-puncor- is the uncorrected P-value threshold, possibly specified in a variable,
set to $S_level if absent or out of range [0,1].
-pcor- is the corrected P-value threshold, possibly specified in a variable,
set according to -method- option if absent or out of range [0,1]
-method- specifies the method used to calculate corrected P-values
and is overridden and set to userspecified if -pcor- is in range [0,1]
*/
*
Default variable name for P-value
(assumed to be from a -parmest- or -parmby- output data set)
*;
if "`pvalue'"=="" {;
confirm numeric variable p;
local pvalue "p";
};
*
Select marked sample of P-values
and count the P-values in -npvalue-
*;
local varlist `pvalue';
marksample touse;
qui count if `touse';
local npvalue=r(N);
if `npvalue'==0 {;error 2000;};
* Screen out invalid P-values in -pvalue- *;
cap assert (`pvalue'>=0)&(`pvalue'<=1) if `touse';
if _rc!=0 {;
disp as error "Invalid P-values outside range 0<=P<=1 in P-value variable: `pvalue'";
error 498;
};
*
Calculate -puncor- and -pcor-
(resetting if out of range [0,1])
and store in scalars,
overriding -method- if -pcor- is provided and in range [0,1]
*;
tempname puscal pcscal;
* Uncorrected P-value *;
cap confirm numeric variable `puncor';
local isvar=_rc==0;
cap confirm number `puncor';
local isnum=_rc==0;
cap confirm name `puncor';
local isname=_rc==0;
if "`puncor'"=="" {;
scal `puscal'=.;
};
else if `isvar' {;
qui summ `puncor' if `touse';
scal `puscal'=r(min);
if r(min)!=r(max) {;
disp as error "puncor(`puncor') has multiple values";
error 498;
};
};
else if `isnum'|`isname' {;
scal `puscal'=`puncor';
};
if (`puscal'<0)|(`puscal'>1) {;
if !missing(`puscal') {;
disp as error "Invalid puncor() value: " `puscal';
error 498;
};
scal `puscal'=1-$S_level/100;
};
* Corrected P-value *;
cap confirm numeric variable `pcor';
local isvar=_rc==0;
cap confirm number `pcor';
local isnum=_rc==0;
cap confirm name `pcor';
local isname=_rc==0;
if "`pcor'"=="" {;
scal `pcscal'=.;
};
else if `isvar' {;
qui summ `pcor' if `touse';
scal `pcscal'=r(min);
if r(min)!=r(max) {;
disp as error "pcor(`pcor') has multiple values";
error 498;
};
local method "userspecified";
};
else if `isnum'|`isname' {;
scal `pcscal'=`pcor';
local method "userspecified";
};
if (`pcscal'<0)|(`pcscal'>1) {;
if !missing(`pcscal') {;
disp as error "Invalid pcor() value: " `pcscal';
error 498;
};
scal `pcscal'=.;
if lower("`method'")=="userspecified" {;
local method="";
disp "Note: pcor() not specified. Default method assumed.";
};
};
local puncor=`puscal';local pcor=`pcscal';
*
Correct case of -method- (substituting default if necessary)
*;
if "`method'"=="" {;local method "bonferroni";};
local method=lower("`method'");
*
Carry out multiple testing procedure
*;
*
Sort by ascending P-value (preserving pre-existing sort order in -seqnum-)
and define P-value ranks, with ties in pre-existing order
*;
tempvar seqnum;
qui {;
gene long `seqnum'=_n;
compress `seqnum';
sort `touse' `pvalue' `seqnum';
by `touse':replace `rank'=_n if `touse';
};
*
Generate critical values, null hypothesis credibility,
and overall corrected P-value threshold
by the multiple test procedure method specified in -method()-
*;
if inlist("`method'","userspecified","bonferroni","sidak") {;
*
One-step procedure is specified
*;
* Procedure-specific section for one-step procedures *;
if "`method'"=="userspecified" {;
qui replace `critical'=`pcscal' if `touse';
};
else if "`method'"=="bonferroni" {;
qui replace `critical'=`puscal'/`npvalue' if `touse';
};
else if "`method'"=="sidak" {;
tempvar inflevel;
qui gene double `inflevel'=(1-`puscal')^(1/`npvalue') if `touse';
qui replace `critical'=1-`inflevel' if `touse' & `inflevel'<1;
qui replace `critical'=`puscal'/`npvalue' if `touse' & `inflevel'>=1;
drop `inflevel';
};
* Common section for all one-step procedures *;
qui {;
replace `nhcred'=`pvalue'>`critical' if `touse';
* Calculate corrected P-value threshold *;
summ `critical' if `touse';
scal `pcscal'=r(min);
};
};
else if inlist("`method'","holm","holland","liu1","liu2") {;
*
Step-down procedure is specified
*;
* Procedure-specific section for step-down procedures *;
if "`method'"=="holm" {;
qui replace `critical'=`puscal'/(`npvalue'-`rank'+1) if `touse';
};
else if "`method'"=="holland" {;
tempvar inflevel;
qui gene double `inflevel'=(1-`puscal')^(1/(`npvalue'-`rank'+1)) if `touse';
qui replace `critical'=1-`inflevel' if `touse' & `inflevel'<1;
qui replace `critical'=`puscal'/(`npvalue'-`rank'+1) if `touse' & `inflevel'>=1;
drop `inflevel';
};
else if "`method'"=="liu1" {;
qui {;
tempvar revrank;
gene long `revrank'=`npvalue'-`rank'+1 if `touse';
compress `revrank';
replace `critical' = 1 - ( 1 - min( 1 , (`npvalue'/`revrank')*`puscal') )^(1/`revrank')
if `touse';
drop `revrank';
};
};
else if "`method'"=="liu2" {;
qui {;
tempvar revrank;
gene long `revrank'=`npvalue'-`rank'+1 if `touse';
compress `revrank';
replace `critical' = min( 1 , (`npvalue'/(`revrank'*`revrank'))*`puscal' )
if `touse';
drop `revrank';
};
};
* Common section for all step-down procedures *;
qui {;
replace `nhcred'=sum(`pvalue'<=`critical')<`rank' if `touse';
* Calculate corrected P-value threshold *;
count if `touse'&`nhcred';
if r(N)==0 {;
summ `critical' if `touse';
scal `pcscal'=r(max);
};
else {;
summ `critical' if `touse'&`nhcred';
scal `pcscal'=r(min);
};
};
};
else if inlist("`method'","hochberg","rom")|inlist("`method'","simes","yekutieli","krieger") {;
*
Step-up procedure is specified
*;
* Procedure-specific section for step-up procedures *;
if "`method'"=="hochberg" {;
qui replace `critical'=`puscal'/(`npvalue'-`rank'+1) if `touse';
};
else if "`method'"=="rom" {;
qui{;
tempvar tmptuse tmprank tmpterm;
*
-tmptuse- is temporary to-use indicator
-tmprank- is temporary rank
-tmpterm- is temporary variable containing terms to be added
when calculating c_{1:n} from c_{2:n} to c_{n:n}
*;
gene byte `tmptuse'=.;
gene long `tmprank'=.;
gene double `tmpterm'=.;
replace `critical'=`puscal' if `touse'&(`rank'==`npvalue');
local npvm1=`npvalue'-1;
forv rankcur=`npvm1'(-1)1 {;
local tmpnpv=`npvalue'-`rankcur'+1;
replace `tmptuse'=`touse'&(`rank'>=`rankcur');
replace `tmprank'=`rank'-`rankcur'+1 if `tmptuse';
replace `tmpterm'=0 if `tmptuse';
replace `tmpterm'=`tmpterm'+`puscal'^(`tmprank'-1) if `tmptuse'&(`tmprank'>=2)&(`tmprank'<=`tmpnpv');
replace `tmpterm'=`tmpterm'
- exp(lnfactorial(`tmpnpv')-lnfactorial(`tmprank')-lnfactorial(`tmpnpv'-`tmprank'))*`critical'^`tmprank'
if `tmptuse'&(`tmprank'>=2)&(`tmprank'<=`tmpnpv'-1);
summ `tmpterm' if `tmptuse';
replace `critical'=r(mean) if `tmptuse'&(`tmprank'==1);
};
};
};
else if "`method'"=="simes" {;
qui replace `critical'=`puscal'*`rank'/`npvalue' if `touse';
};
else if "`method'"=="yekutieli" {;
qui {;
tempvar invrank;tempname suminvr;
gene double `invrank'=1/`rank' if `touse';
summ `invrank' if `touse';
scal `suminvr'=r(sum);
replace `critical'=`puscal'*`rank'/`npvalue' if `touse';
replace `critical'=`critical'/`suminvr' if `touse';
drop `invrank';
scal drop `suminvr';
};
};
else if "`method'"=="krieger" {;
qui {;
tempname pprime;
scal `pprime'=`puscal'/(1+`puscal');
replace `critical'=`pprime'*`rank'/`npvalue' if `touse';
gsort +`touse' -`pvalue' -`seqnum';
replace `nhcred'=sum(`pvalue'<=`critical')==0 if `touse';
sort `touse' `pvalue' `seqnum';
count if `touse'&`nhcred';
local mzero=r(N);
if (`mzero'>0)&(`mzero'<`npvalue') {;
replace `critical'=`pprime'*`rank'/`mzero' if `touse';
};
};
};
* Common section for all step-up procedures *;
qui {;
gsort +`touse' -`pvalue' -`seqnum';
replace `nhcred'=sum(`pvalue'<=`critical')==0 if `touse';
sort `touse' `pvalue' `seqnum';
* Calculate corrected P-value threshold *;
count if `touse'&(!`nhcred');
if r(N)==0 {;
summ `critical' if `touse';
scal `pcscal'=r(min);
};
else {;
summ `critical' if `touse'&(!`nhcred');
scal `pcscal'=r(max);
};
};
};
else {;
*
Unrecognised procedure is specified
*;
disp as error `"Unrecognised method(`method')"';
error 498;
};
*
Assign uncorrected and corrected overall critical P-values
to variables -gpuncor- and -gpcor- respectively
and assign rejection status to variable -reject-
*;
qui{;
replace `gpuncor'=`puscal' if `touse';
replace `gpcor'=`pcscal' if `touse';
replace `reject'=!`nhcred' if `touse';
};
* Label output variables (specifying method) *;
lab var `rank' "P-value rank";
lab var `gpuncor' "Uncorrected overall critical P by method(`method')";
lab var `critical' "Critical P by method(`method')";
lab var `gpcor' "Corrected overall critical P by method(`method')";
lab var `nhcred' "H0 credible by method(`method')";
lab var `reject' "H0 rejected by method(`method')";
* Sort back to original order *;
sort `seqnum';
* Test that -pcscal- has the required properties *;
cap assert `nhcred'==(`pvalue'>`pcscal') if `touse';
if _rc!=0 {;
disp as text "Corrected overall critical P-value (" `pcscal'
") does not separate credible and incredible null hypotheses";
};
* Count rejected P-values *;
qui count if `touse'&`reject';
tempname nreject;
scal `nreject'=r(N);
* Output uncorrected and corrected overall critical P-value thresholds *;
disp _n as text "Method: " as result "`method'"
_n as text "Uncorrected overall critical P-value: " as result `puscal'
_n as text "Number of P-values: " as result `npvalue'
_n as text "Corrected overall critical P-value: " as result `pcscal'
_n as text "Number of rejected P-values: " as result `nreject';
* Save results to be returned *;
return scalar puncor=`puscal';
return scalar npvalue=`npvalue';
return scalar pcor=`pcscal';
return scalar nreject=`nreject';
return local method "`method'";
end;
|