BookmarkSubscribeRSS Feed
Lao_feng
Obsidian | Level 7

Dear all,

Does anyone know how to calculate the 95% CI for a proportion when the proportion is exactly 100% ? Thanks !

 

 

Feng Liang

4 REPLIES 4
Ksharp
Super User
data x;
 x=1;output;
 x=1;output;
run;
proc freq data=x;
table x/binomial cl;
run;
Rick_SAS
SAS Super FREQ

The problem is that if all trials resulted in 'success' then (to a frequentist) the standard error is 0 and the confidence interval collapses to [1, 1]. There are ways to adjust the CI. See the Hanley's 1983 JAMA paper

http://www.medicine.mcgill.ca/epidemiology/hanley/reprints/If_Nothing_Goes_1983.pdf

which suggests that you should use a 95% CI of [1 - 3/n, 1] for the rate, where n is the number of observations.

StatDave
SAS Super FREQ

You can get an exact lower confidence limit by using the EXACT BINOMIAL statement in PROC FREQ:

 

data a; input x w; datalines;
1 20
0 0
;
proc freq; table x; exact binomial; weight w; run;
Lao_feng
Obsidian | Level 7

Thanks a lot for your help !

 

 

Regards,

Feng Liang

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 1526 views
  • 0 likes
  • 4 in conversation