binom.agresti {RSurveillance} | R Documentation |
Agresti-Coull confidence limits
Description
Calculates Agresti-Coull confidence limits for a simple proportion (apparent prevalence)
Usage
binom.agresti(x, n, conf = 0.95)
Arguments
x |
number of positives in sample |
n |
sample size, note: either x or n can be a vector, but at least one must be scalar |
conf |
level of confidence required, default 0.95 (scalar) |
Value
a dataframe with 6 columns, x, n, proportion, lower confidence limit, upper confidence limit, confidence level and CI method
Examples
# test binom.agresti
binom.agresti(25, 200)
binom.agresti(seq(10, 100, 10), 200)
binom.agresti(50, seq(100, 1000, 100))
[Package RSurveillance version 0.2.1 Index]