Processing math: 100%

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)

Arguments

x

A number or a vector with the number of successes.

n

A number or a vector with the number of trials.

conf.level

Confidence level for the returned confidence interval. By default, it is 0.95.

Value

A vector with the lower and upper limits.

Details

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.5nx+0.5),

and its standard error is:

se(ˆϕML)=1x+0.5+1nx+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.

References

Rindskopf, D. (2000). Commentary: Approximate is better than “exact” for interval estimation of binomial proportions. The American Statistician, 54, 88.

See also

Author

David Esteban Cartagena Mejía, dcartagena@unal.edu.co

Examples

ci_p_rindskopf(x=15, n=50, conf.level=0.95)
#>           [,1]
#> [1,] 0.1938182
#> [2,] 0.4422596