Concept Architecture
Concept
Theoretically, Poisson Regression is a generalised linear modelling (GLM) technique used to model count outcomes as a function of one or more explanatory variables. It assumes that the response variable follows a Poisson distribution and that the logarithm of the expected event count is a linear combination of predictor variables. The method is particularly appropriate when modelling rare events, incidence rates, healthcare utilisation, and other count data frequently encountered in health economics and epidemiology.
Mathematically, Poisson Regression belongs to the exponential family of generalised linear models and employs a logarithmic link function to ensure that predicted event rates remain positive. Regression coefficients quantify multiplicative effects on the expected event rate, with exponentiated coefficients interpreted as incidence rate ratios (IRRs). Model parameters are estimated using maximum likelihood estimation, and goodness of fit is commonly assessed using deviance statistics, likelihood ratio tests, information criteria, and residual diagnostics.
In practice, Poisson Regression is used to estimate associations between patient characteristics, treatments, or interventions and counts of healthcare events such as hospital admissions, outpatient visits, prescriptions, adverse events, or disease incidence. In health economic evaluations it is frequently applied to model healthcare resource utilisation and event frequencies that contribute to cost estimation. Where observed variance substantially exceeds the mean, alternative models such as Negative Binomial Regression are generally preferred.
Purpose
Used to model count outcomes and event rates while estimating the effects of explanatory variables on healthcare utilisation, disease incidence, adverse events, and resource consumption within health economic and clinical studies.
Mathematical Formulae
Primary Formula
ln(??) = ?? + ??x?? + ??x?? + ? + ??x??
or equivalently
?? = exp(?? + ??x?? + ??x?? + ? + ??x??)
where:
- ?? = expected event count
- ?? = intercept
- ?? ? ?? = regression coefficients
- x? ? x? = explanatory variables
Supporting Formulae
Y? ~ Poisson(??)
Var(Y?) = ??
IRR = e?
Log-likelihood:
ln(L) = ? [y? ln(??) ? ?? ? ln(y?!)]
For models including exposure time:
ln(??) = ?? + ??x?? + ? + ln(t?)
where t? is the exposure offset.
Related Mathematical Methods
- Generalised Linear Models
- Maximum Likelihood Estimation
- Poisson Distribution
- Incidence Rate Ratio
- Likelihood Ratio Test
- Wald Test
- Deviance Analysis
- Negative Binomial Regression
- Quasi-Poisson Regression
Example
A health economist models annual emergency department attendances using age, treatment group, and comorbidity score.
The fitted model is:
ln(?) = ?0.85 + 0.028(Age) + 0.41(Comorbidity) ? 0.32(Treatment)
For a patient aged 70 years with a comorbidity score of 2 receiving treatment:
ln(?) = ?0.85 + (0.028 ? 70) + (0.41 ? 2) ? (0.32 ? 1)
ln(?) = 1.61
? = e?�?? = 5.00
The model predicts approximately five emergency department attendances during the observation period. The treatment incidence rate ratio is:
IRR = e??�?� = 0.73
indicating a 27% reduction in the expected event rate after adjusting for other variables.
Excel Implementation
| Function | Example Formula | Health Economics Application |
|---|---|---|
| EXP | =EXP(B2) | Convert the linear predictor into the expected event count. |
| LN | =LN(A2) | Calculate logarithmic offsets or transform event rates. |
| POISSON.DIST | =POISSON.DIST(A2,B2,FALSE) | Calculate probabilities from the fitted Poisson model. |
| LINEST | =LINEST(LN(ExpectedCounts),PredictorRange,TRUE,TRUE) | Approximate estimation of regression coefficients for educational purposes. |
| SUMPRODUCT | =SUMPRODUCT(CoefficientRange,VariableRange) | Calculate the linear predictor prior to exponentiation. |
VBA (Optional)
Automate estimation of Poisson regression models, calculate incidence rate ratios, and generate regression summary tables for healthcare utilisation analyses.
Sources
- McCullagh P, Nelder JA. Generalized Linear Models. 2nd ed.
- Cameron AC, Trivedi PK. Regression Analysis of Count Data.
- Hilbe JM. Modeling Count Data.
- Dobson AJ, Barnett AG. An Introduction to Generalized Linear Models.
- Briggs A, Claxton K, Sculpher M. Decision Modelling for Health Economic Evaluation.
- Drummond MF, et al. Methods for the Economic Evaluation of Health Care Programmes.
- NICE Health Technology Evaluation Manual.
- ISPOR Good Practice Reports.
Related Concepts (2)
Library
Publications
1
Statistical Analysis of Cost-Effectiveness Data — Willan & Briggs, 1st Edition ed., 2006 (John Wiley & Sons)
A synthesis of statistical methods for analysing cost-effectiveness data, including net-benefit regression, confidence intervals for the ICER, cost-effectiveness acceptability curves, and covariate adjustment. Part of the Wiley Statistics in Practice series.
BookView source →
Frequently Asked Questions (6)
What is Poisson regression?
A modelling technique analysing count outcome data, such as clinical events per patient, based on the assumption that outcomes follow a Poisson distribution.
Source: Cameron & Trivedi 2013
What outcomes does Poisson regression model, and on what assumption?
Poisson regression models count outcomes, such as the number of clinical events per patient, relating them to predictors on the assumption that the counts follow a Poisson distribution. It expresses each predictor's effect as a rate ratio, saying how the event rate multiplies as the predictor changes. Its central assumption, that the variance of the counts equals their mean, is also its main weakness, since real counts often vary more, in which case a negative binomial model is preferred. Relating predictors to event rates is its purpose. Kirkwood and Sterne (2003) describe this technique.
Source: Kirkwood & Sterne 2003
How does Poisson regression work?
Poisson regression works by modelling the log of the expected count as a linear combination of the predictors, so that the expected count is a positive function of the predictors, under the Poisson distribution, with the coefficients estimated by maximum likelihood. An offset can be included to model rates per unit of exposure or time. So Poisson regression works by relating predictors to the log of the expected count and using the Poisson likelihood to estimate the effects, which are interpreted as rate ratios after exponentiation, and it accommodates varying exposure through an offset, making it suitable for modelling event counts and rates.
Source: Cameron & Trivedi 2013
When is Poisson regression used?
Poisson regression is used when the outcome is a count of events, such as numbers of occurrences, admissions, or cases, and the counts plausibly follow a Poisson distribution with the variance equal to the mean. So Poisson regression is used for count outcomes and rates, providing a natural model when events occur at a rate influenced by predictors, though its assumption that the variance equals the mean must hold, which is why overdispersion is checked for, since if the counts are overdispersed, Poisson regression understates the standard errors and the negative binomial regression, which allows extra variability, is preferred.
Source: Cameron & Trivedi 2013
How are the results of Poisson regression interpreted?
The results of Poisson regression are interpreted through rate ratios, obtained by exponentiating the coefficients: a rate ratio above one indicates that the predictor increases the expected count or rate, below one that it decreases it, holding the other predictors constant. So Poisson regression results are interpreted as the multiplicative effect of each predictor on the rate of events, expressed as rate ratios, which convey how the expected count changes per unit of the predictor, and when an offset is used, the model gives rates per unit of exposure, making the interpretation one of relative rates, analogous to how logistic regression gives odds ratios for binary outcomes.
Source: Cameron & Trivedi 2013
What is the main limitation of Poisson regression?
The main limitation of Poisson regression is its assumption that the variance of the count equals the mean, which often fails in practice because count data are frequently overdispersed, with variance exceeding the mean; when this occurs, Poisson regression underestimates the standard errors and overstates significance. So the main limitation of Poisson regression is its vulnerability to overdispersion, which is why the equality of mean and variance is checked, and when overdispersion is present, negative binomial regression, which includes a dispersion parameter, is used instead to obtain valid inference, since applying Poisson regression to overdispersed counts produces overly narrow confidence intervals.
Source: Cameron & Trivedi 2013
Trust Record
Verified by Dr Darrin Baines
British health economist
Professional identity: darrinbaines.org
Verification date: 23 Dec 2025
Content version: 1.0.0
Canonical Identity
- Persistent URI
- https://healtheconomics.wiki/concept/poisson-regression
- Term code
- HE-ES-SA-158
Stable URI · Machine-readable · Resolvable · CC BY 4.0