powered by
CDF of soft-thresholding Fisher's p-value combination statistic under the null hypothesis.
p.soft(q, n, tau1, M = NULL)
- quantile, could be a vector.
- dimension parameter, i.e. the number of p-values to be combined.
- truncation parameter=normalization parameter. tau1 > 0.
- correlation matrix of the input statistics. Default = NULL assumes independence.
The left-tail probability of the null distribution of soft-thresholding Fisher's p-value combination statistic at the given quantile.
1. Hong Zhang and Zheyang Wu. "TFisher Tests: Optimal and Adaptive Thresholding for Combining p-Values", submitted.
stat.soft for the definition of the statistic.
stat.soft
# NOT RUN { pval <- runif(100) softstat <- stat.soft(p=pval, tau1=0.05) p.soft(q=softstat, n=100, tau1=0.05) M = matrix(0.3,100,100) + diag(1-0.3,100) p.soft(q=softstat, n=100, tau1=0.05, M=M) # }
Run the code above in your browser using DataLab