Bayesian Linear Regression

Summary

Chapter 14 of BDA3 presents the Bayesian approach to linear regression. Priors on coefficients provide natural regularization, and the full posterior gives uncertainty intervals for predictions — not just point estimates.

The Model

With a noninformative prior , the posterior for is a multivariate distribution centered at the OLS estimate — the Bayesian and frequentist answers coincide.

Regularization Through Priors

Informative priors on provide regularization:

  • Ridge-like: — shrinks coefficients toward zero
  • Lasso-like: — encourages sparsity
  • Horseshoe prior: heavy-tailed, allows large signals while shrinking noise — state of the art for sparse problems

Key Topics

  • Causal inference: regression for estimating treatment effects (incumbency and voting example) — connects to Regression and the CEF
  • Dimension reduction: when is large relative to , priors are essential
  • Unequal variances: heteroscedastic models with
  • Prior information: incorporating external knowledge about coefficient magnitudes

See Also