Why Bayes — Benefits, Costs, and Borders

Summary

The case for Bayes in this book is not philosophical but operational: because a Bayesian model specifies the joint distribution , it can be run forward (, simulation) as well as backward (, inference). That symmetry is what makes prior predictive checking, posterior predictive checking, fake-data experimentation, and simulation-based calibration possible at all — the entire workflow of this book is built on it. The chapter is equally frank about the borders: real models are almost never fully generative, and Bayesian practice always leaves information on the table.

Overview

A classical model is characterized by alone; the goal is to estimate and its uncertainty given . A Bayesian model additionally specifies , the prior, which turns the pair into a generative model: first draw , then draw .

The symmetry that makes workflow possible (Ch. 1.1, p. 3)

The model defines a joint distribution and can be defined before either or is known.

  • If is observed, compute — backward inference.
  • If is observed (or drawn from the prior), compute/simulate — forward simulation, i.e. generative modeling.

A single model is therefore applicable in different contexts depending on which variables are observed. Every checking technique in this book — Prior Predictive Checking, Posterior Predictive Checking, Designing Simulated-Data Experiments, SBC — is an application of the forward direction.

Main Content

Five practical benefits

  1. Latent parameters and model expansion. Complexity can be added incrementally within one estimation framework. Even when the question of interest is a scalar, latent parameters make the model more realistic — e.g. the item-response model of Multiple-Choice Exam - A Full Workflow Walkthrough has a parameter for every rater and every item, plus structural parameters governing them.
  2. Seamless integration of multiple information sources. The U.S. presidential election forecast combines national polls, state polls, past state results, and an economic-conditions model in one joint distribution.
  3. Uncertainty as a probability distribution, pipeable into decision analysis. See From Inference to Decision and the classification-competition case study.
  4. Informative priors stabilize inference, yielding posteriors more reasonable than point estimates from local data alone.
  5. Posterior predictive checking becomes available — comparing observed data to replicated datasets from the generative model. In a workflow context this is the step that both critiques the model and proposes its expansions.

A sixth, counterintuitive benefit: some models are just easier to fit using Bayes. The common complaint is that Bayes is more expensive than optimization, but when data are sparse or models complex, optimization is unstable. Zero estimates of variance parameters destroy non-Bayesian multilevel estimates; complex physics likelihood surfaces are hard to navigate (see the planetary motion case study). Prior information is a regularizer that makes the “more complicated” Bayesian apparatus more numerically stable — most starkly with complete separation in logistic regression.

The costs

  • You must specify a full probability distribution over all known and unknown quantities. The authors frame this as a cost that doubles as a benefit: it forces explicitness. But because inference then depends on the whole joint model, it becomes important to fit multiple models and assess sensitivity — which is precisely why workflow is needed.
  • Computation. Posterior summaries generally come from random simulation requiring sophisticated algorithms (see Computational Tools and Probabilistic Programming).

On the borders of Bayes

These are the places where the axioms do not resolve the problem and “creativity, compromise, and exploration” are required.

Border issueThe problemWhere the book addresses it
Sparsity and complexityWith informative data all methods agree; with sparse data or complex models, modeling details drive conclusions. “In low information or high complexity scenarios, workflow is a necessity.”Prior Distributions
Default methods vs. targeted modelsIdeally build from substantive understanding; in practice we start from defaults (linear, log/logit, binomial/normal) and add complexity graduallyGolf putting case study
Frequency propertiesAny Bayesian method yields a non-Bayesian method: treat the posterior as a function of data and evaluate its sampling propertiesStatistical and Scientific Inference
Computational approximationsSimulation is sometimes too slow, so we substitute a normal approximation or variational estimate and treat the result as if it were a posterior — which makes checking the fit essentialApproximate Algorithms and Approximate Models
Unmodeled dataModels are typically not fully generativesee below
Excluded informationEvery model is a compromise: linearity we know is false, additivity we know fails, predictors treated as known though measured with noiseChoosing an Initial Model

Unmodeled data (Ch. 1.1, p. 5)

In with prior , we typically do not model the sample size or the predictors as random. No generative model has been specified for or , so in any simulation they must be set ahead of time.

This matters operationally: it is why every fake-data experiment in this book begins by fixing and before drawing parameters. Expanding the model to include and is possible and occasionally useful — e.g. if larger samples are associated with smaller effects, and should be negatively correlated a priori; treating as random helps assess out-of-distribution behavior.

Even unmodeled data require a predictive specification: LOO-CV (§8.3) corresponds to a hypothetical population of size with from the same distribution, and poststratification (§7.1) requires a distribution of for the target population.

Why not jump straight to the larger model?

Beyond effort and compute: adding parameters makes classical estimates noisier and classical intervals wider. Under regularization or Bayes this immediate cost is not incurred — but only at the price of a strong regularizer or informative prior. One reason we use simpler models is precisely to avoid having to figure out what prior and data model to use. “Behind any fitted model are the shadows of all the more complicated models that could — and if sufficient time, resources, and data were available, would — be fit.”

Bayesian interpretation of non-Bayesian methods

The habit of saying “maximum likelihood is just Bayes with a flat prior,” “fixed effects are random effects with group variance set to infinity,” “lasso is just regression with an exponential prior” is useful for insight but can mislead.

Why "lasso is just an exponential prior" breaks down (Ch. 1.1, p. 6)

The lasso estimate can be viewed as an approximate posterior mode under independent exponential priors on the coefficients. But lasso is intended for moderate- and high-dimensional problems, and in such problems the mode is not a good posterior summary because of concentration of measure. So in high dimensions, “a penalty is just a log prior density” stops being accurate or useful.

Interpretation: This does not make lasso bad, nor a Bayesian version necessarily better — some of lasso’s desirable computational and applied properties arise directly from it being a mode rather than a full posterior. See Global-Local Shrinkage Priors and The Horseshoe Prior for the genuinely Bayesian alternatives.

The useful direction of the analogy: when estimates are problematically noisy and replications fail, recognizing that simple means, differences, and least squares correspond to flat-prior Bayes tells you what to do. When the estimate is too large to believe, that implies inference can be improved by incorporating prior information.

Bayesian modeling as hierarchical modeling

Bayesian thinking leads naturally to hierarchy. For exam scores from students in many schools, , the model contains both extremes as special cases:

with intermediate giving partial pooling. More generally the prior and data distributions form a hierarchy where is an “urn” from which data are sampled — a different urn for each — and is “a room full of urns.”

The prior as a reference set

“The prior distribution represents a reference set of problems to which a method might be applied.” In a hierarchical model, aspects of that room are estimated by gathering data corresponding to multiple drawn from it. This reframing — prior as reference set rather than as belief — recurs throughout Prior Distributions.

The framework guides how the model is built but does not supply the details. The normal distribution is one modeling choice among many, and things become more open-ended with multivariate hierarchical models (both and varying by school) or continuous curves. For the details you need to visualize and simulate from the model, and the right choice depends on substantive goals.

Connections

See Also