BookmarkSubscribeRSS Feed
sazad
Calcite | Level 5

Hi there,

I am trying to check for random cross section effects by dropping a cross section at a time as done in Engle and Rangel (2008): Table 9.

Do I use the proc mixed to make the period fixed and country random or just use the proc panel with ranone? Also, I don't know how Engle and Rangel (2008) found autocorrelation coefficient in Table 9 for panel specification.

Could anyone help, please?

 

proc mixed data = mydata;

class country year;

model my model year/ solution;

random country;

run;

or

proc panel data = mydata;

id country year;

model my model/HAC ranone;

run;

 

Thanks,

Sohel

 

Reference:

Engle, R.F. and Rangel, J.G., 2008. The spline-GARCH model for low-frequency volatility and its global macroeconomic causes. The Review of Financial Studies, 21(3), pp.1187-1222.
1 REPLY 1
mkeintz
PROC Star

I'm not familiar with proc panel or proc mixed.  BUT ...

 

... I don't see why YEAR is a class variable, which makes it no different than, say color.  Shouldn't you allow year to be a continuous variable?  Which I believe is the only way to get autocorrelation (assuming you - and Engle and Rangel - mean serial autocorrelation).

--------------------------
The hash OUTPUT method will overwrite a SAS data set, but not append. That can be costly. Consider voting for Add a HASH object method which would append a hash object to an existing SAS data set

Would enabling PROC SORT to simultaneously output multiple datasets be useful? Then vote for
Allow PROC SORT to output multiple datasets

--------------------------

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1195 views
  • 0 likes
  • 2 in conversation