I'm trying to put Poisson continuous error bars on a histogram I'm making with matplotlib, but I can't seem to find a numpy function that will given me a 95% confidence interval assuming poissonian data. Ideally the solution doesn't depend on scipy, but anything will work. Does such a function exist? I've found a lot about bootstrapping but this seems a bit excessive in my case.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Using
Even though it only makes limited sense to compute the Poisson distribution for non-integer values, the exact confidence intervals requested by the OP can be computed it can be done as follows:
It's also possible to use the
But because the distribution is discrete the return values will be integers, and the confidence interval will not span 95% exactly:
|
||||
|
I ended up writing my own function based on some properties I found on Wikipedia.
This returns continuous (rather than discrete) bounds, which is more standard in my field. |
|||
|
|