The SYSLIN Procedure |
The following example was used by Zellner in his classic 1962 paper on seemingly unrelated regressions. Different stock prices often move in the same direction at a given point in time. The SUR technique might provide more efficient estimates than OLS in this situation.
The following statements read the data. (The prefix GE stands for General Electric and WH stands for Westinghouse.)
*---------Zellner's Seemingly Unrelated Technique------------* | A. Zellner, "An Efficient Method of Estimating Seemingly | | Unrelated Regressions and Tests for Aggregation Bias," | | JASA 57(1962) pp.348-364 | | | | J.C.G. Boot, "Investment Demand: an Empirical Contribution | | to the Aggregation Problem," IER 1(1960) pp.3-30. | | | | Y. Grunfeld, "The Determinants of Corporate Investment," | | Unpublished thesis, Chicago, 1958 | *------------------------------------------------------------*; data grunfeld; input year ge_i ge_f ge_c wh_i wh_f wh_c; label ge_i = 'Gross Investment, GE' ge_c = 'Capital Stock Lagged, GE' ge_f = 'Value of Outstanding Shares Lagged, GE' wh_i = 'Gross Investment, WH' wh_c = 'Capital Stock Lagged, WH' wh_f = 'Value of Outstanding Shares Lagged, WH'; datalines; ... more lines ...
The following statements compute the SUR estimates for the Grunfeld model.
proc syslin data=grunfeld sur; ge: model ge_i = ge_f ge_c; westing: model wh_i = wh_f wh_c; run;
The PROC SYSLIN output is shown in Output 26.2.1 through Output 26.2.5.
Model | GE |
---|---|
Dependent Variable | ge_i |
Label | Gross Investment, GE |
Model | WESTING |
---|---|
Dependent Variable | wh_i |
Label | Gross Investment, WH |
Analysis of Variance | |||||
---|---|---|---|---|---|
Source | DF | Sum of Squares | Mean Square | F Value | Pr > F |
Model | 2 | 5165.553 | 2582.776 | 24.76 | <.0001 |
Error | 17 | 1773.234 | 104.3079 | ||
Corrected Total | 19 | 6938.787 |
Parameter Estimates | ||||||
---|---|---|---|---|---|---|
Variable | DF | Parameter Estimate |
Standard Error | t Value | Pr > |t| | Variable Label |
Intercept | 1 | -0.50939 | 8.015289 | -0.06 | 0.9501 | Intercept |
wh_f | 1 | 0.052894 | 0.015707 | 3.37 | 0.0037 | Value of Outstanding Shares Lagged, WH |
wh_c | 1 | 0.092406 | 0.056099 | 1.65 | 0.1179 | Capital Stock Lagged, WH |
Cross Model Covariance | ||
---|---|---|
GE | WESTING | |
GE | 777.446 | 207.587 |
WESTING | 207.587 | 104.308 |
Copyright © 2008 by SAS Institute Inc., Cary, NC, USA. All rights reserved.