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:
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).
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.
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.