What CI methods exist for a proportion?
mediumAnswer
- Wald (naive): p̂ ± z * √(p̂(1-p̂)/n) — bad when p̂ is near 0/1 or n small (can even exceed [0,1]).
- Wilson score: preferred default; more accurate coverage.
- Clopper-Pearson (exact): guaranteed conservative coverage but wider.
- Agresti-Coull: quick fix (add 2 successes + 2 failures).
- Modern practice: use Wilson or Clopper-Pearson, avoid Wald except for very large n and mid-range p.
Check yourself — multiple choice
- Only Wald
- Wald (naive, bad near 0/1) / Wilson (default) / Clopper-Pearson (exact, conservative) / Agresti-Coull; avoid Wald with small n or extreme p̂
- Same as z-test
- Not needed
Proportion CIs: Wilson or Clopper-Pearson preferred; avoid Wald at extremes.
#confidence-interval
Practise Statistics Fundamentals
215 interview questions in this topic.
Related questions
- What does a 95% confidence interval mean?
- How is a CI related to a hypothesis test?
- Standard error vs standard deviation — the difference.
- 95% CI for a mean — formula and interpretation.
- How many bootstrap resamples do you need, and which statistics does it handle?
- Bootstrap CI methods — percentile vs BCa vs studentized.