Questions tagged [poisson-distribution]

A discrete distribution defined on the non-negative integers that has the property that the mean is equal to the variance.

Overview

A discrete random variable $X$ has a Poisson distribution indexed by a parameter $\lambda$ if it has probability mass function

$$ P(X = x) = \frac{ \lambda^x e^{-\lambda} }{x!} \quad \text{for } x>0 $$

One property of the Poisson distribution is that $\mathrm{E}(X) = \mathrm{Var}(X) = \lambda$.

The Poisson distribution is used to model situations where there is a rate of occurrence associated with an event. For example, it used prominently in Physics to model "counting experiments" like the number of photons arriving at a telescope, or the number of radioactive counts recorded by a Geiger counter.

1753 questions
89
votes
5 answers

Relationship between poisson and exponential distribution

The waiting times for poisson distribution is an exponential distribution with parameter lambda. But I don't understand it. Poisson models the number of arrivals per unit of time for example. How is this related to exponential distribution? Lets say…
user862
  • 2,339
  • 4
  • 27
  • 24
79
votes
1 answer

How to interpret coefficients in a Poisson regression?

How can I interpret the main effects (coefficients for dummy-coded factor) in a Poisson regression? Assume the following example: treatment <- factor(rep(c(1, 2), c(43, 41)), levels = c(1, 2), …
66
votes
1 answer

Why is the square root transformation recommended for count data?

It is often recommended to take the square root when you have count data. (For some examples on CV, see @HarveyMotulsky's answer here, or @whuber's answer here.) On the other hand, when fitting a generalized linear model with a response variable…
46
votes
2 answers

Poisson regression to estimate relative risk for binary outcomes

Brief Summary Why is it more common for logistic regression (with odds ratios) to be used in cohort studies with binary outcomes, as opposed to Poisson regression (with relative risks)? Background Undergraduate and graduate statistics and…
45
votes
4 answers

How to calculate a confidence level for a Poisson distribution?

Would like to know how confident I can be in my $\lambda$. Anyone know of a way to set upper and lower confidence levels for a Poisson distribution? Observations ($n$) = 88 Sample mean ($\lambda$) = 47.18182 what would the 95% confidence look…
Travis
  • 721
  • 1
  • 8
  • 15
45
votes
8 answers

How can I test if given samples are taken from a Poisson distribution?

I know of normality tests, but how do I test for "Poisson-ness"? I have sample of ~1000 non-negative integers, which I suspect are taken from a Poisson distribution, and I would like to test that.
37
votes
3 answers

How do I interpret the 'correlations of fixed effects' in my glmer output?

I have the following output: Generalized linear mixed model fit by the Laplace approximation Formula: aph.remain ~ sMFS2 +sAG2 +sSHDI2 +sbare +season +crop +(1|landscape) AIC BIC logLik deviance 4062 4093 -2022 4044 Random…
susie
  • 641
  • 2
  • 8
  • 9
36
votes
1 answer

Error metrics for cross-validating Poisson models

I'm cross validating a model that's trying to predict a count. If this was a binary classification problem, I'd calculate out-of-fold AUC, and if this was a regression problem I'd calculate out-of-fold RMSE or MAE. For a Poisson model, what error…
Zach
  • 22,308
  • 18
  • 114
  • 158
35
votes
1 answer

Does Cox Regression have an underlying Poisson distribution?

Our small team was having a discussion and got stuck. Does anyone know whether Cox regression has an underlying Poisson distribution. We had a debate that maybe Cox regression with constant time at risk will have similarities with Poisson regression…
Julie
  • 533
  • 1
  • 5
  • 7
35
votes
4 answers

How is Poisson distribution different to normal distribution?

I have generated a vector which has a Poisson distribution, as follows: x = rpois(1000,10) If I make a histogram using hist(x), the distribution looks like a the familiar bell-shaped normal distribution. However, a the Kolmogorov-Smirnoff test…
luciano
  • 12,197
  • 30
  • 87
  • 119
35
votes
2 answers

Is there a boxplot variant for Poisson distributed data?

I'd like to know if there is a boxplot variant adapted to Poisson distributed data (or possibly other distributions)? With a Gaussian distribution, whiskers placed at L = Q1 - 1.5 IQR and U = Q3 + 1.5 IQR, the boxplot has the property that there…
caas
  • 535
  • 1
  • 4
  • 7
34
votes
4 answers

Checking if two Poisson samples have the same mean

This is an elementary question, but I wasn't able to find the answer. I have two measurements: n1 events in time t1 and n2 events in time t2, both produced (say) by Poisson processes with possibly-different lambda values. This is actually from a…
Charles
  • 1,068
  • 1
  • 7
  • 14
34
votes
4 answers

Difference between binomial, negative binomial and Poisson regression

I am looking for some information about the difference between binomial, negative binomial and Poisson regression and for which situations are these regression best fitted. Are there any tests I can perform in SPSS that can tell me which of these…
33
votes
4 answers

How do I fit a multilevel model for over-dispersed poisson outcomes?

I want to fit a multilevel GLMM with a Poisson distribution (with over-dispersion) using R. At the moment I am using lme4 but I noticed that recently the quasipoisson family was removed. I've seen elsewhere that you can model additive…
30
votes
2 answers

How to know if a data follows a Poisson Distribution in R?

I am an undergrad student and I have a project for my probability class. Basically, I have a dataset about the hurricanes that impacted my country for a series of years. In my probability Book, (Probability and Statistics with R) there is an (not…
Shariff
  • 401
  • 1
  • 5
  • 5
1
2 3
99 100