BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Yanni_C
Fluorite | Level 6

How to get residual when using SAS to do GMM?

Here is an example:

proc sort data;by id ;run;

proc model data;

endo ri;

exog mp smb hml;

instruments _exog_;

parms b0 b1 b2 b3;

ri= b0+b1*mp+b2*smb+b3*hml;

fit ri/gmm kernel=(bart,1,0);

by sizeport0 btmport0 ciiport0 ;

ods output parameterestimates=parameterestimates;

run;

quit;

I want to get residual in the dataset, but I do not know how to get it. 

Thank you in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
SteveDenham
Jade | Level 19

Add the out=resid outresid option to the FIT statement, like this:

 

proc model data;
endo ri;
exog mp smb hml;
instruments _exog_;
parms b0 b1 b2 b3;
ri= b0+b1*mp+b2*smb+b3*hml;
fit ri/gmm kernel=(bart,1,0 ) out=resids outresid outactual;
by sizeport0 btmport0 ciiport0 ;
ods output parameterestimates=parameterestimates;

run;

So long as there is no conflict between the GMM method, the kernel option and these additional options, you should get a dataset named resids containing the residuals and the actual values of the endogenous variables.

 

SteveDenham

 

View solution in original post

3 REPLIES 3
SteveDenham
Jade | Level 19

Moved again to Forecasting and Econometrics community.

 

SteveDenham

SteveDenham
Jade | Level 19

Add the out=resid outresid option to the FIT statement, like this:

 

proc model data;
endo ri;
exog mp smb hml;
instruments _exog_;
parms b0 b1 b2 b3;
ri= b0+b1*mp+b2*smb+b3*hml;
fit ri/gmm kernel=(bart,1,0 ) out=resids outresid outactual;
by sizeport0 btmport0 ciiport0 ;
ods output parameterestimates=parameterestimates;

run;

So long as there is no conflict between the GMM method, the kernel option and these additional options, you should get a dataset named resids containing the residuals and the actual values of the endogenous variables.

 

SteveDenham

 

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

Discussion stats
  • 3 replies
  • 1241 views
  • 4 likes
  • 3 in conversation