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; 1935 33.1 1170.6 97.8 12.93 191.5 1.8 ... 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 36.2.1 through Output 36.2.5.
Output 36.2.1: PROC SYSLIN Output for SUR
Output 36.2.2: PROC SYSLIN Output for SUR
Output 36.2.3: PROC SYSLIN Output for SUR
Output 36.2.4: PROC SYSLIN Output for SUR
Output 36.2.5: PROC SYSLIN Output for SUR