Good day,
I have quarterly data regarding GDP from different European countries, i.e. panel data. With the command
I have specified the structure, is this correct ?
For the regression I have to use the command "reghdfe" and control for direct country effects.
Which of the two would be correct for this ?
Furthermore, maybe I want to use the cluster command if i get better results for it in my regression, how would it look then ?
Would this be correct ?
I would be very happy if you could help me and explain the differences as well
I have quarterly data regarding GDP from different European countries, i.e. panel data. With the command
PHP Code:
xtset Country_num Year
For the regression I have to use the command "reghdfe" and control for direct country effects.
Which of the two would be correct for this ?
PHP Code:
reghdfe y x1 x2, absorb(country_num) vce(robust)
PHP Code:
reghdfe y x1 x2, absorb(Land_num Year) vce(robust)
Would this be correct ?
PHP Code:
reghdfe y x1 x2, cluster(Land_num) absorb(Land_num)
Comment