This function calculates the mid-p confidence interval for a Binomial proportion. It is vectorized, allowing the evaluation of single values or vectors.
ci_p_mid_p(x, n, conf.level = 0.95)
A vector with the lower and upper limits of the confidence interval.
The mid-p confidence interval adjusts the exact binomial interval by averaging the tail probabilities of the observed value. The limits are found by solving the following equations:
$$\sum_{j=0}^{x-1} P(X = j) + 0.5 \cdot P(X = x) = \alpha / 2$$
$$\sum_{j=x+1}^{n} P(X = j) + 0.5 \cdot P(X = x) = \alpha / 2$$
where \(P(X = j)\) is the binomial probability.
Berry, G., & Armitage, P. (1995). Mid-P confidence intervals: a brief review. Journal of the Royal Statistical Society Series D: The Statistician, 44(4), 417-423.
ci_p.
# Example with a single value
ci_p_mid_p(x = 5, n = 20, conf.level = 0.95)
#> [,1]
#> [1,] 0.09786008
#> [2,] 0.47022380
# Example with vectors
x_values <- c(5, 10, 15)
n_values <- c(20, 30, 40)
ci_p_mid_p(x = x_values, n = n_values, conf.level = 0.95)
#> [,1] [,2] [,3]
#> [1,] 0.09786008 0.1833232 0.2361295
#> [2,] 0.47022380 0.5141852 0.5313959