Conditional Autoregressive Model

bayesianspatial-econometricsrandom-effectshierarchical-modeldisease-mappingimproper-priorposterior-proprietyglmmgibbs-samplerpoisson-regressionvariance-components

Definition

A conditional autoregressive (CAR) model specifies spatial random effects Z=(Z1,,Zq)Z = (Z_1, \ldots, Z_q)' for qq geographic regions through their full conditional distributions: each ZiZiZ_i | Z_{-i} follows a normal distribution whose mean is a weighted average of neighboring values. When the implied q×qq \times q precision matrix BB is positive definite the joint distribution of ZZ is proper; when BB is only nonnegative definite (singular), the joint distribution is improper — a "partially informative normal" — requiring additional identification from the data for the posterior to be well-defined.

Key Ideas

How It Works

  1. Construct adjacency structure: Build adjacency matrix CC (entries cij=1c_{ij}=1 if regions ii and jj share a boundary, 0 otherwise) and degree matrix D=diag(d1,,dq)D = \mathrm{diag}(d_1, \ldots, d_q) with di=#{j:cij=1}d_i = \#\{j: c_{ij}=1\}.
  2. Choose CAR variant: Intrinsic CAR (B=DCB = D - C, ρ=1\rho=1) encodes "no overall level" — only local contrasts are identified from the prior. Clayton-Kaldor (B=IρCB = I - \rho C) has a proper joint for ρ<1/λq|\rho| < 1/\lambda_q.
  3. Check rank condition: Before fitting, verify rank(X2R1X2+B)=q\mathrm{rank}(X_2'R_1X_2 + B) = q. For intrinsic CAR with grand mean in X1X_1: the rank condition is equivalent to checking that the regression design X2X_2 identifies the null space of DCD - C (the constant vector 1q\mathbf{1}_q).
  4. Gibbs sampling: The full conditional ZiZi,θ,δ0,δ1Z_i | Z_{-i}, \theta, \delta_0, \delta_1 is Normal; the full conditional for δ1Z\delta_1 | Z is inverse-gamma — both conjugate. The sampler is straightforward to implement but will appear to converge even when the posterior is improper.
  5. Generalized Linear Mixed Model (GLMM) extension: Replace the Gaussian observation layer with a Poisson log-linear response (YiPoisson(mieVi)Y_i \sim \mathrm{Poisson}(m_i e^{V_i})) for disease mapping. The sufficient condition for a proper posterior requires at least nn observations with integrable likelihoods and the rank condition on the design matrices (Theorem 4).

Why It Matters

Open Questions

Related