Bayesian Model Selection

bayesian-model-selectionmodel-selectionpredictive-distributionbayesianmarginal-likelihoodbayes-factor

Definition

Bayesian model selection is the framework for choosing among competing statistical models using probability calculus: either by computing posterior model probabilities via Bayes factors / marginal likelihoods, or by comparing models on how well their predictive distributions describe observed data. Unlike classical hypothesis testing, it provides an interpretable criterion (probability or predictive accuracy) rather than a significance threshold, and naturally handles model uncertainty through averaging.

Key Ideas

How It Works

Bayes Factor Computation

For a regression y=Xβ+εy = X\beta + \varepsilon, the marginal likelihood integrates out parameters: p(yMk)=p(yθk,Mk)p(θkMk)dθkp(y|M_k) = \int p(y|\theta_k, M_k)\,p(\theta_k|M_k)\,d\theta_k Under Zellner's gg-prior (βN(0,gσ2(XX)1)\beta \sim N(0, g\sigma^2(X'X)^{-1})), this has a closed form depending only on R2R^2 and degrees of freedom.

Predictive Density Comparison (Greenberg-Parks)

Under a non-informative prior for (β,σ)(\beta, \sigma), the predictive density for new observations y0y_0 given X0X_0 is multivariate Student-t with mean X0β^X_0\hat\beta and covariance proportional to s2[I+X0(XX)1X0]s^2[I + X_0(X'X)^{-1}X_0']. Model comparison proceeds through:

  1. Scaled mean shift Λβ^2/σ^\Lambda'\hat\beta_2/\hat\sigma: measures shift in prediction from dropping X2X_2; interpretable in units of the dependent variable.
  2. Generalized Variance Ratio (GVR): ratio of determinants of predictive covariance matrices; GVR ≈ 1 means little loss of predictive precision.
  3. Overlap statistic: fraction overlap of 95% highest posterior density (HPD) intervals at sample points across models.

Multicollinearity and Prediction

The mean shift Λ=X02X01δ^\Lambda' = X_{02} - X_{01}\hat\delta is zero when the prediction point lies on the collinearity hyperplane — the Bayesian restatement of the classical result that multicollinearity does not impair prediction if the regressor correlation structure persists into the forecast period.

Why It Matters

Open Questions

Related