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 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

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