Skip to main content

Poisson Regression

We use the Poisson Regression to model a risk ratio when we are interested not in whether something occurs but how many times it occurs; Either repeated events or events in a population.Ex. number of hospitalizations, number of infections, etc.

Logistic regression produces odd ratios (which approximates risk ratio when outcome is rare), but only analyzes patients with at least 1 event and can be difficult to interpret when outcome is not rare. Survival analysis can be used to analyze the time to the first event.

Poisson Distribution

image-1669650512462.png

  • X ~ Poisson(μ); μ  > 0
  • X = the number of occurrences of an event of interest, with parameter μ
  • Probability mass function

    image-1669650464913.png

  • E(X) = μ 
  • V(X) = μ 

The distribution depends of the expected number of events, since the mean = variance. As the number of expected number of events increases it the more closely the Poisson distribution approximates the normal distribution.

If X ~ Binomial(n, p) and n -> inf, p -> 0 such that np is constant; X ~ Poisson(np)

Distribution of the sum of independent Poisson random variables. If Xi ~ Poisson(μi) for i = 1 to m, and teh Xi's are independent then:
image-1669650771273.png

IR = (number of events)/(number of controls OR interventions)
Incident Rate Ratio = IR_intervention / IR_controls

CI for expected number of events (μ):
μL, μU = X +/- 1.96 * sqrt(X)

CI for Incidence Rate:
image-1669650983573.png

The event rate can also be written as:
    λ = μ / N
Where μ  is the expected number of events and N is the number of exposure units

We model the relationship on the log scale:
image-1669651128158.png

So to use the Poisson model we need 3 things:

  1. Predictor variables and covariates X1, X2, X3...
  2. The number of events for each "subject", defined as the group to which the event count belongs
  3. The denominator that the events are drawn from Ni

For specific values of X, X*, X+:
image-1669651776355.png
For a CI for IRR(X* vs X+):
image-1669651830426.png