This function calculates the confidence interval for a proportion. It is vectorized, allowing users to evaluate it using either single values or vectors.
ci_p_rindskopf(x, n, conf.level = 0.95)
A vector with the lower and upper limits.
The expression to calculate the confidence interval according to the Rindskopf approach is given by:
ϕ=logit(π)=log(π1−π),
where the maximum likelihood estimator for ϕ is:
ˆϕML=log(x+0.5n−x+0.5),
and its standard error is:
se(ˆϕML)=√1x+0.5+1n−x+0.5.
The adjustment of adding 0.5 successes and non-successes ensures that intervals can also be computed for the cases where x=0 or x=n (where otherwise the maximum likelihood estimator and standard error would be infinite).
Since the scale of ϕ is (−∞,∞), this interval respects the boundary constraints. Back-transformation to the scale of π is performed using the inverse logit function:
π=expit(ϕ)=exp(ϕ)1+exp(ϕ).
Thus, the confidence interval for π in the original scale is the Rindskopf confidence interval, as proposed by Rindskopf.
Rindskopf, D. (2000). Commentary: Approximate is better than “exact” for interval estimation of binomial proportions. The American Statistician, 54, 88.
ci_p.
ci_p_rindskopf(x=15, n=50, conf.level=0.95)
#> [,1]
#> [1,] 0.1938182
#> [2,] 0.4422596