![]() Chapter Contents |
![]() Previous |
![]() Next |
The SYSLIN Procedure |
A system of structural equations with endogenous regressors can be represented as functions only of the predetermined variables. For this to be possible, there must be as many equations as endogenous variables. If there are more endogenous variables than regression models, you can use IDENTITY statements to complete the system. See "Reduced Form Estimates" in the "Computational Details" section later in this chapter for details.
The REDUCED option on the PROC SYSLIN statement prints reduced form estimates. The following statements show this using the 3SLS estimates of the structural parameters.
proc syslin data=in 3sls reduced; endogenous p; instruments y u s; demand: model q = p y s; supply: model q = p u; run;
The first four pages of this output were as shown previously and are not repeated here. (See Figure 19.3, Figure 19.4, Figure 19.5, and Figure 19.6.) The final page of the output from this example contains the reduced form coefficients from the 3SLS structural estimates, as shown in Figure 19.8.
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.