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 now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.