Description Usage Arguments Details Value Note Author(s) References Examples
Tests all possible region hypotheses in a given region while controlling the FWER, using a user-specified local test.
1 2 3 |
weights |
a vector that indicates the weight each elementary hypotheses should receive in the multiple testing procedure. The length of the vector should equal the number of elementary hypotheses. All values should be strictly positive. |
test |
A function that performs the local test. The function should have the left and rightbound of the region as input (as two separate numbers), and return a p-value. |
alpha_max |
The significance level of the test procedure. |
all_pvalues |
If set to TRUE, the procedure will return a matrix with the p-values of all tested region hypotheses. If set to FALSE, only the p-values of the implications will be returned. |
isadjusted |
If set to TRUE, adjusted p-values will be calculated. Otherwise, the p-values of all rejected hypotheses will equal alpha_max. |
verbose |
If set to TRUE, while running the method, a counter will indicate how many region hypotheses are already rejected. |
The function regionmethod
tests all possible region hypotheses within one main interval, while controlling the familywise error rate.
The function regionmethod
returns an object of class region
.
The number of region hypotheses is quadratic in the number of elementary hypotheses. The number of elementary hypotheses should for computational reasons not be too large. For values in between 1000 and 10.000 the region procedure can still be used, but one might consider calculating the individual raw p-values beforehand.
If both isadjusted
and all_pvalues
are set to TRUE, afterwards implications can be obtained for all alpha-values smaller or equal to alpha_max
.
Rosa Meijer: r.j.meijer@lumc.nl
Meijer, Krebs and Goeman (2015) Statistical Applications in Genetics and Molecular Biology 14 (1) 1-19.
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 |
#generate data, where the response Y is associated with certain groups of covariates
#namely cov 3-6, 9-12, 15-18
set.seed(1)
n=100
p=20
X <- matrix(rnorm(n*p),n,p)
beta <- c(rep(0,2),rep(1,4),rep(0,2),rep(1,4),rep(0,2),rep(1,4),rep(0,2))
Y <- X %*% beta + rnorm(n)
# Define the local test to be used in the closed testing procedure
mytest <- function(left,right)
{
X <- X[,(left:right),drop=FALSE]
lm.out <- lm(Y ~ X)
x <- summary(lm.out)
return(pf(x$fstatistic[1],x$fstatistic[2],x$fstatistic[3],lower.tail=FALSE))
}
# perform the region procedure
reg <- regionmethod(rep(1,p), mytest, isadjusted=TRUE)
summary(reg)
#what are the smallest regions that are found to be significant?
implications(reg)
#at least how many covariates within the full region of length 20
#are associated with the response?
regionpick(reg, list(c(1,p)), alpha=0.05)
#visualize the results by either plotting a polygon corresponding to the underlying graph
regionplot(reg)
#or by plotting the graph itself
regionplot2(reg)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.