0

What can be a statistical test to find out if a population has the mean equal to its own variance? I.e. Mean(X)=Var(X)?

I am interested in it because Poisson regression makes the assumption that the mean of the predicted variable is the same as the variance of the predicted variable, i.e. lambda = E(Y) = Var(Y) where lambda is the parameter for the Poisson distribution for Y.

Fanta
  • 103

2 Answers2

2

Your real problem seems to be testing if you have overdispersion (less usually underdispersion, my last Poisson regression project actually saw underdispersion, counting territorial birds!) The usual procedure is to fit the Poisson regression model, and then test for overdispersion (or underdispersion) afterwards.

There are a lot of posts about this on site, look through this stored search.

2

Beware!

  1. In Poisson regression, it's the conditional distribution of the response not its marginal distribution that is Poisson.

    Consequently, the variance will be equal to the mean within each specific set of values of the predictors, but not across all of them. In general the marginal variance will exceed the marginal mean, even when the Poisson regression assumptions are exactly correct.

  2. While there are tests for this, I would not advise using hypothesis tests as assumption checks. Among other things:

    • it answers the wrong question; it gives a noisy answer to a question you already know the answer to (no, your data are not exactly drawn from a conditionally-Poisson-distributed population), instead of telling you about the thing you need to (whether the model inadequacy is consequential for your inference).

    • using the same data to choose models (via assumption tests or by other means) and to perform inference (estimation, confidence intervals, tests etc) or prediction itself interferes with the very properties of those analyses you're seeking to guarantee.


With a Poisson regression, there's a simple check of whether the conditional variance and mean are consistent available (and indeed a test if you insist on doing one anyway), which is to compare the residual deviance to the degrees of freedom. [There are other checks and tests, naturally.]

Glen_b
  • 282,281