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

Hi all,

 

I am re-posting this question to a the SAS Forecasting and Econometrics board as suggested by another user. I was trying to do a feasible generalized least square (FGLS) in SAS 9.2 to adjust for heteroscedasticity. The form of the variance is unknown. I am just trying to use the residuals to estimate the variance and then do an iterative reweighting (I think this is what FGLS is).

 

I googled it and found the SAS documentation here. But the documentation didn't explain very clearly how to implement FGLS in proc model. It only says using H.var. I tried the following code,

 

proc model data=temp ;
y=b0+b1*x1+b2*x2;
h.y=resid.y**2;
fit y /itprint ;
run;

 

 

 

but SAS says:

 

WARNING: Can only do FIML or GMM estimation when parameters are shared by the mean model and the variance model. The estimation requested will ignore the variance model.

 

So I believe the code is not doing FGLS.

 

My question is:

Can anyone provide an example code that will do a FGLS? I am OK with either proc model or any other procedures that will do the job.

 

Thank you all so much.

1 ACCEPTED SOLUTION

Accepted Solutions
kessler
SAS Employee

In PROC MODEL you must specify the form of the heteroscedasticity to perform a FGLS estimation, and the parameters in the variance equation cannot be shared with the mean equation parameters.  In your code the variance model you are specifying is effectively

h.y=(y-(b0+b1*x1+b2*x2))**2;

which shares all the parameters in the mean equation.

 

 

In the case when the variance structure is unknown the estimation can be performed using the generalized method of moments (GMM).  The code to do that is

 

proc model data=temp ;
   y = b0+b1*x1+b2*x2;
   h.y = resid.y**2;
   fit y / gmm;
run;

View solution in original post

3 REPLIES 3
kessler
SAS Employee

In PROC MODEL you must specify the form of the heteroscedasticity to perform a FGLS estimation, and the parameters in the variance equation cannot be shared with the mean equation parameters.  In your code the variance model you are specifying is effectively

h.y=(y-(b0+b1*x1+b2*x2))**2;

which shares all the parameters in the mean equation.

 

 

In the case when the variance structure is unknown the estimation can be performed using the generalized method of moments (GMM).  The code to do that is

 

proc model data=temp ;
   y = b0+b1*x1+b2*x2;
   h.y = resid.y**2;
   fit y / gmm;
run;
grtlzy163
Calcite | Level 5

I see. So for unknown variance form, it can only be done through GMM and full likelihood, but not iterative reweighting?

kessler
SAS Employee

PROC MODEL does not have a built in option to do the reweighting; however, you could specify two FIT statements to perform the reweighting yourself:

proc model data=temp;
   fit y / outactual out=o;
   y = b0+b1*x1+b2*x2;
   outvar resid.y;

   fit y / data=o;
   h.y = resid_y**2;
quit;

 

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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
  • 3827 views
  • 1 like
  • 2 in conversation