| q.tpm | R Documentation |
Quantile of truncated product method statistic under the null hypothesis.
q.tpm(p, n, tau1, M = NULL)
p |
- a scalar left probability that defines the quantile. |
n |
- dimension parameter, i.e. the number of input p-values. |
tau1 |
- truncation parameter. 0 < tau1 <= 1. |
M |
- correlation matrix of the input statistics. Default = NULL assumes independence. |
Quantile of truncated product method statistic.
1. Hong Zhang and Zheyang Wu. "TFisher Tests: Optimal and Adaptive Thresholding for Combining p-Values", submitted.
2. Zaykin, D.V., Zhivotovsky, L. A., Westfall, P.H. and Weir, B.S. (2002), Truncated product method for combining P-values. Genet. Epidemiol., 22: 170–185. doi:10.1002/gepi.0042
stat.tpm for the definition of the statistic.
## The 0.05 critical value of TPM statistic when n = 10:
q.tpm(p=.95, n=20, tau1 = 0.05)
M = matrix(0.3,20,20) + diag(1-0.3,20)
q.tpm(p=.95, n=20, tau1 = 0.05, M=M)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.