Skip to content
Prev 167128 / 398502 Next

Confidence Intervals for Poisson

On Jan 15, 2009, at 1:10 AM, John Kerpel wrote:

            
Yes and no.

Using Byar's approximation, which is reasonably accurate at this  
expected value, I get 6.2 and 20.9 so R's qpois seems pretty sensible.

Your results don't look like a proper creation of a Normal approx,  
however. Weren't you worried that your code might not be performing as  
desired when the upper CL for your alpha= 0.05, and 0.01 results were  
only different by 0.3?

I would have thought a (much more simple) Normal approximation for the  
Poisson 0.05 CL around an expected of E might be
    E +/- 1.96* E^(.5).  So  12 +/- 2* 3.4 (5.2, 18.8)  might be an  
eyeball estimate.

 > 12 + 1.96*sqrt(12)
[1] 18.78964
 > 12 - 1.96*sqrt(12)
[1] 5.210361