Generalized Linear Models

Summary

Chapter 16 of BDA3 covers the Bayesian treatment of GLMs — logistic, Poisson, and other models with non-normal likelihoods. Bayesian priors provide regularization that is especially valuable for separation in logistic regression.

GLM Framework

A GLM has three components:

  1. Distribution:
  2. Linear predictor:
  3. Link function:
ModelDistributionLink
Linear regressionNormalIdentity
Logistic regressionBinomialLogit
Poisson regressionPoissonLog

Weakly Informative Priors for Logistic Regression

Tip

For logistic regression, a weakly informative prior like (on standardized predictors) prevents separation problems and stabilizes estimates when data are sparse.

Key Applications

  • Overdispersed Poisson regression: modeling police stops with extra-Poisson variation
  • State-level opinion estimation: multilevel regression with poststratification (MRP)
  • Multivariate/multinomial responses: extending to multiple outcome categories
  • Loglinear models: for contingency table data

See Also