chiPool | R Documentation |
This implements the chi-squared pooled p-value which can be used to control the centrality quotient when pooling p-values.
chiPool(p, kappa)
p |
numeric vector of p-values between 0 and 1 |
kappa |
numeric value between 0 and infinity |
The chi-squared pooled p-value is a quantile transformation pooled p-value based on the chi-squared distribution with degrees of freedom kappa. By setting kappa between 0 and infinity, smooth interpolation is achieved between Tippett's minimum pooled p-value and Stouffer's normal quantile pooled p-value respectively. Choosing a kappa value of 2, Fisher's pooling function is obtained. Tippett's pooled p-value is maximally non-central and Stouffer's is maximally central, while Fisher's presents a balance between marginal and central rejection.
A pooled p-value between 0 and 1.
Chris Salahub
p <- c(0.1, 0.5, 0.9)
chiPool(p, exp(-4))
chiPool(p, 2)
chiPool(p, exp(4))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.