CPANEL Procedure
INSTRUMENTS Statement
INSTRUMENTS effects </ option>;
The INSTRUMENTS statement specifies instrumental variables and effects. It is valid only when you perform either instrumental variables regression or dynamic panel estimation.
Instrumental Variables (IV) Regression
You perform instrumental variables (IV) regression by specifying one or more of the IVBTWNG, IVFIXONE, IVFIXONETIME, IVFIXTWO, IVG2SLS, IVPOOLED, IVRANONE, and IVRANTWO options in the MODEL statement.
The effects that you specify in the INSTRUMENTS statement are auxiliary effects external to those that you specify in the MODEL statement. If you have multiple MODEL statements, then each INSTRUMENTS statement is associated with the MODEL statement that immediately precedes it.
The INSTRUMENTS statement is used in conjunction with the ENDOGENOUS statement to perform IV regression. The following statements perform IV fixed-effects regression with the model effects X1, X2, Z1, and Z2. The effects X2 and Z2 are endogenous, and G1 and G2 are external instruments.
proc cpanel data = mylib.a;
id firm year;
model Y = X1 X2 Z1 Z2 / ivfixone;
endogenous X2 Z2;
instruments G1 G2;
run;
Dynamic Panel Estimation
You perform dynamic panel estimation by specifying the DYNDIFF or DYNSYS options in the MODEL statement.
When you use the INSTRUMENTS statement in dynamic panel estimation, it specifies a set of variables to be included as standard instruments.
If you have multiple MODEL statements, then each INSTRUMENTS statement is associated with the MODEL statement that immediately precedes it.
You can specify the following option after a slash (/):
The following statements perform dynamic panel estimation by using GMM-style instruments for the endogenous variable Sales and standard instruments for the exogenous variable Price. Both sets of instruments are included only in the difference equations.
proc cpanel data = mylib.a;
id firm year;
model Sales = Price / dyndiff;
endogenous Sales / eq = diff;
instruments Price / eq = diff;
run;
For both IV regression and dynamic panel estimation, you can also specify classification variables, interactions, and nested effects in the INSTRUMENTS statement. For more information about constructing model effects, see the section Specification and Parameterization of Model Effects in Chapter 4, Shared Concepts.