Necessary or sufficient bounds for significance of the harmonic mean chi-squared test are computed for n one-sided p-values.

pvalueBound(alpha, n, type = c("necessary", "sufficient"))

Arguments

alpha

Numeric vector specifying the significance level.

n

The number of p-values.

type

Either "necessary" (default) or "sufficient". If "necessary", the necessary bounds are computed. If "sufficient", the sufficient bounds are computed.

Value

The bound for the p-values.

References

Held, L. (2020). The harmonic mean chi-squared test to substantiate scientific findings. Journal of the Royal Statistical Society: Series C (Applied Statistics), 69, 697-708. doi:10.1111/rssc.12410

See also

Author

Leonhard Held

Examples

pvalueBound(alpha = 0.025^2, n = 2, type = "necessary")
#> [1] 0.06530883
pvalueBound(alpha = 0.025^2, n = 2, type = "sufficient")
#> [1] 0.01626547