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
Jade | Level 19

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

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

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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