Skip to contentScholarGate
LibraryBookshelfDeskReview StudioAssistant
Sign in
On this page
IntuitionHow it worksWhen to use itStrengths & limitationsCommon pitfallsApplicationsFrequently asked🔒 Read the full methodSourcesRelated methods
Cite this pageSpotted an issue on this page? Report or suggest a fix →
Home›Statistics›Bayesian Poisson Regression
Regression modelRegression / GLM

Bayesian Poisson Regression

Also known as: Bayesian log-linear count model, Bayesian GLM Poisson, Poisson regression with priors, Bayesian count regression

Bayesian Poisson regression models non-negative integer count outcomes using a Poisson likelihood with a log link, placing prior distributions on the regression coefficients. Posterior inference — combining prior beliefs with the data likelihood — produces full probability distributions over the coefficients rather than single-point estimates, enabling coherent uncertainty quantification and incorporation of domain knowledge.

ScholarGate
  1. Regression model
  2. v1
  3. 2 Sources
  4. PUBLISHED
Cite this page →
Tools & resources
Download slides
Learn & explore

Read the full method

Members only

Sign in with a free account to read this section.

Sign in

Method map

The neighbourhood of related methods — select a node to explore.

Bayesian Poisson Regression
Bayesian Generalized Lin…Bayesian Multiple linear…Bayesian Negative Binomi…Negative Binomial Regres…Poisson RegressionZero-inflated modelBayesian Zero-inflated m…

When to use it

Use Bayesian Poisson regression when the outcome is a non-negative integer count (events per time period, cases per region, occurrences per subject) and you want full posterior uncertainty rather than a point estimate plus asymptotic confidence interval. It is especially valuable when samples are small or sparse (where frequentist maximum-likelihood estimates can be unstable), when informative prior knowledge from prior studies or theory is available, or when model comparison via information criteria such as WAIC or LOO-CV is needed. Avoid it — or prefer the Negative Binomial variant — when the count data are overdispersed (variance substantially exceeds the mean), as the Poisson assumption of equidispersion will inflate posterior confidence and produce poor predictive checks. Also avoid when the outcome is continuous or when computational cost of MCMC is prohibitive for a very large dataset and a simpler GLM suffices.

Strengths & limitations

Strengths
  • Produces full posterior distributions over coefficients, enabling genuine probabilistic statements about parameter values and predictions.
  • Naturally regularises estimates through priors, reducing overfitting in small or high-dimensional data settings.
  • Straightforward incorporation of external information (prior studies, expert elicitation) through informative priors.
  • Rate ratios (exp(beta)) are directly interpretable as multiplicative effects on the expected count.
  • Principled model comparison using WAIC and leave-one-out cross-validation (LOO-CV).
  • Posterior predictive checks provide a transparent, visual tool for diagnosing model misfit.
Limitations
  • Computationally intensive: MCMC sampling can be slow for large datasets or complex hierarchical structures.
  • Requires careful prior specification; poorly chosen priors can dominate the likelihood when sample sizes are small.
  • The Poisson equidispersion assumption (mean = variance) is often violated in real count data; overdispersion produces unreliable posterior inference.
  • Results and convergence diagnostics (R-hat, effective sample size) require more statistical expertise to interpret than a standard GLM output.
  • Sensitive to misspecification of the likelihood family if the generating process deviates substantially from Poisson.

Frequently asked

What prior should I use for the regression coefficients?

A common weakly-informative choice is Normal(0, 2.5) on standardised predictors (recommended by Gelman et al. and the rstanarm defaults). This keeps coefficients within plausible ranges without overwhelming the likelihood. For rate-ratio interpretability, check that exp(beta) stays within a reasonable range given the domain.

How do I tell if my data are overdispersed?

After fitting the model, run a posterior predictive check: simulate replicated datasets from the posterior and compare the variance-to-mean ratio of the simulated counts to the observed data. If simulated variance is systematically lower than observed variance, the Poisson assumption is too restrictive and Bayesian Negative Binomial regression is a better choice.

When should I add an offset term?

Add an offset when the exposure or population at risk differs across observations — for example, if one region has 10 times the population of another, the raw count is not comparable without adjusting for population size. The offset log(exposure_i) is added to the linear predictor with a coefficient fixed at 1.

How does Bayesian Poisson regression compare to frequentist Poisson GLM?

Both share the same likelihood and log link. The Bayesian version adds priors and returns full posterior distributions rather than point estimates and asymptotic confidence intervals. Bayesian credible intervals have a direct probability interpretation, whereas frequentist confidence intervals do not. In large samples the two agree closely; differences are most pronounced in small samples or with informative priors.

Can I use this model for zero-inflated counts?

Standard Bayesian Poisson regression does not separately model an excess of zeros. If your data have more zeros than a Poisson distribution predicts, use a Bayesian zero-inflated Poisson or hurdle model instead, which explicitly accounts for a structural zero-generating process.

Sources

  1. Gelman, A., Carlin, J. B., Stern, H. S., Dunson, D. B., Vehtari, A., & Rubin, D. B. (2013). Bayesian Data Analysis (3rd ed.). CRC Press. ISBN: 978-1439840955
  2. McCullagh, P., & Nelder, J. A. (1989). Generalized Linear Models (2nd ed.). Chapman and Hall. ISBN: 978-0412317606

How to cite this page

ScholarGate. (2026, June 3). Bayesian Poisson Regression. ScholarGate. https://scholargate.app/en/statistics/bayesian-poisson-regression

Related methods

Bayesian Generalized Linear ModelBayesian Multiple linear regressionBayesian Negative Binomial RegressionNegative Binomial RegressionPoisson RegressionZero-inflated model

Which method?

Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.

  • Bayesian Generalized Linear ModelStatistics↔ compare
  • Bayesian Multiple linear regressionStatistics↔ compare
  • Bayesian Negative Binomial RegressionStatistics↔ compare
  • Negative Binomial RegressionEconometrics↔ compare
  • Poisson RegressionEconometrics↔ compare
  • Zero-inflated modelStatistics↔ compare
Compare side by side →

Referenced by

Bayesian Generalized Linear ModelBayesian Negative Binomial RegressionBayesian Zero-inflated model

Similar methods

Bayesian Negative Binomial RegressionBayesian Generalized Linear ModelBayesian Zero-inflated modelPoisson Rate RegressionPoisson RegressionBayesian Multiple linear regressionBayesian Ordinal Logistic RegressionNegative Binomial Regression

Related reference concepts

Bayesian Model Comparison and SelectionHierarchical Bayesian ModelsMultilevel and Partial Pooling ModelsBayesian Inference FoundationsConjugate PriorsBinomial and Poisson Distributions

Spotted an issue on this page? Report or suggest a fix →

ScholarGate — Bayesian Poisson Regression (Bayesian Poisson Regression). Retrieved 2026-07-22 from https://scholargate.app/en/statistics/bayesian-poisson-regression · Dataset: https://doi.org/10.5281/zenodo.20539026
Quick facts
Originator
Gelman et al. (BDA); classical Poisson GLM from McCullagh & Nelder (1989)
Year
1989 (GLM foundation); Bayesian treatment formalized in 1990s–2000s
Type
Bayesian generalized linear model for count data
DataType
Non-negative integer counts (discrete)
Subfamily
Regression / GLM
Related methods
Bayesian Generalized Linear ModelBayesian Multiple linear regressionBayesian Negative Binomial RegressionNegative Binomial RegressionPoisson RegressionZero-inflated model
ScholarGate

A content-first reference library for research methods — what each one is, how it works, and where it comes from.

Open data (CC-BY)

Explore

  • Library
  • Search the library…
  • Browse by field
  • Fields
  • Journey
  • Compare
  • Which method?

Reference

  • Subjects
  • Atlas
  • Glossary
  • Methodology
  • Philosophy

Your tools

  • Bookshelf
  • Desk
  • Chat

Company

  • About
  • Pricing
  • Contact
  • Suggest a method

Entries are compiled from published sources for reference. Verifying the accuracy and suitability of any information for your own use remains your responsibility.

© 2026 ScholarGate · A research-method reference library
  • Privacy
  • Cookies
  • Terms
  • Delete account