medScan
A collection of methods for large scale single mediator hypothesis testing. The six included methods for testing the mediation effect are Sobel’s test, Max P test, joint significance test under the composite null hypothesis, high dimensional mediation testing, divide-aggregate composite null test, and Sobel’s test under the composite null hypothesis. Du, J., Zhou, X., Hao, W., Liu, Y., Smith, J. A., & Mukherjee, B (2022) “Methods for Large-scale Single Mediator Hypothesis Testing: Possible Choices and Comparisons.” arXiv preprint <arXiv:10.48550/arXiv.2203.13293>.
Install R
from the R Project Site.
Install the remotes
R package with
install.packages("remotes")
.
Install the medScan
package.
::install_github("umich-cphds/medScan") remotes
# simulate data under the mixture null
=10000
n= runif(n,0,1)
u = z.beta = rep(NA,0)
z.alpha = 0.98
pi00 = 0.01
pi10 = 0.01
pi01 for(i in 1:n){
if(u[i]<=pi00){
= rnorm(1, 0, 1)
z.alpha[i] = rnorm(1, 0, 1)
z.beta[i] else if (u[i]<= pi00+pi10){
} = rnorm(1, 1, 1)
z.alpha[i] = rnorm(1, 0, 1)
z.beta[i] else {
} = rnorm(1, 0, 1)
z.alpha[i] = rnorm(1, 1, 1)
z.beta[i]
}
}
# obtain p-values
= medScan(z.alpha = z.alpha, z.beta = z.beta, method = "Sobel")
obj ::qq(obj$pvalues, xlim = c(0,4), ylim = c(0,4), main = "Sobel")
qqman
= medScan(z.alpha = z.alpha, z.beta = z.beta, method = "MaxP")
obj ::qq(obj$pvalues, xlim = c(0,4), ylim = c(0,4), main = "MaxP")
qqman
= medScan(z.alpha = z.alpha, z.beta = z.beta, method = "HDMT")
obj ::qq(obj$pvalues, xlim = c(0,4), ylim = c(0,4), main="HDMT")
qqman
= medScan(z.alpha = z.alpha, z.beta = z.beta, method = "Sobel_comp")
obj ::qq(obj$pvalues, xlim = c(0,4), ylim = c(0,4), main = "Sobel-comp")
qqman
= medScan(z.alpha = z.alpha, z.beta = z.beta, method = "JT_comp")
obj ::qq(obj$pvalues, xlim = c(0,4), ylim = c(0,4), main="JT-comp")
qqman
= medScan(z.alpha = z.alpha, z.beta = z.beta, method = "DACT")
obj ::qq(obj$pvalues, xlim = c(0,4), ylim = c(0,4), main="DACT") qqman