Skip to main content

SUR — Seemingly Unrelated Regressions

SUR (Seemingly Unrelated Regressions) estimates multiple equations jointly when they appear independent but their errors are correlated across equations. By exploiting that correlation (via GLS), SUR yields more efficient estimates than running OLS on each equation separately.

When to use

Use SUR when multiple equations share common shocks (e.g. expenditure systems across goods, demand functions across sectors) — no endogeneity but correlated errors. If there is endogeneity ⇒ 3SLS.


Model specification

A system of mm equations Yg=Xgβg+εgY_g = X_g \beta_g + \varepsilon_g with Cov(εg,εh)0\mathrm{Cov}(\varepsilon_g, \varepsilon_h) \ne 0. SUR is estimated by FGLS using the cross-equation error covariance Σ\Sigma:

β^SUR=(X(Σ1I)X)1X(Σ1I)Y\hat{\beta}_{SUR} = \big(X'(\Sigma^{-1} \otimes I)X\big)^{-1} X'(\Sigma^{-1}\otimes I)Y

When equations share the same regressors or errors are uncorrelated, SUR reduces to equation-by-equation OLS.


Running in EcoLab

  1. Modeling module → IV & simultaneous equations family → SUR.
  2. Declare the equations (each with its own YgY_g and XgX_g).
  3. Run; read system-wide coefficients + the error-correlation matrix; export the replication code.

Replication code

* ── SUR estimation ────────────────────────────────
* Equation 1: y1 depends on x1, x2
* Equation 2: y2 depends on x3, x4
sureg (eq1: y1 x1 x2) (eq2: y2 x3 x4)

* Test cross-equation restrictions
test [eq1]x1 = [eq2]x3

Limitations

  • Efficiency gains are small when errors are weakly correlated or equations share regressors.
  • Sensitive to misspecification in any equation.

Video tutorial

Video Tutorial: Guide to running SUR in EcoLab

See also