mspak asks:
I would like to know the AR test result, however, the log showed:
WARNING: The ARTEST test cannot be calculated for one or more lags due to missing values in the response and/or explanatory variable.
Can anyone provide a soultion to fix the problem?
If the missing values are due to calculations performed by PROC PANEL when generating lagged variables, then this can be alleviated by using the CLAG statement (instead of the LAG statement). This will replace missing values with cross-sectional means. Otherwise, you would have to manually exclude the "missing" observations from the analysis by using the WHERE= option.
My another question is the MAXBAND option in proc panel:
MAXBAND=integer
specifies the maximum number of time periods (per instrumental variable) that are allowed into the moment condition.
If I specify as 10, does it mean that estimation is by system GMM with lagged levels dated t-10 used as instruments for equation in differences and lagged differences dated t-10 used as instruments for equation in levels?
If you specify MAXBAND=10, then lagged levels UP TO AND INCLUDING t-10 are used as instruments in the difference equations, and lagged differences UP TO AND INCLUDING t-10 are used as instruments in the level equations.
--Bobby