- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Can anybody please let me know how to calculate P value for a Poisson distribution? Thanks.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you so much. It is really helpful. Could you also please guide me to help finding appropritae sas code in such cases. Thanks a lot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I believe that is using the CDF, cumulative distribution function.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you so much. It is really helpful. Could you also please guide me to help finding appropritae sas code in such cases. Thanks a lot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You accidentally marked your own replay as the solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
If you have an observed value of some test statistics that follows a Poisson distribution, then Reeza is correct and you can use the CDF function:
lambda=10; obsValue=15;
OneSidePVal = 1 - cdf("Poisson", ObsValue, lambda);
However, since most statistics do not follow a Poisson distribution, maybe you are asking about fitting a Poisson distribution to data and obtaining a p-value for the goodness-of-fit test? In that case, you should use PROC GENMOD to fit the distribution as shown in the article "Fitting a Poisson distribution to data in SAS". (You can also use COUNTREG.)
Unfortunately, the statistics that come out of PROC GENMOD do not include p-values, but you can use PROC FREQ to compute a chi-square statistics that compares the observed and expected values in each category. The details are shown in the article "Testing the fit of a discrete distribution." If you are interested, there are also graphical techniques for evaluating the fit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you so much. Really appreciate. Best regards.