Hello,
i would like to make a panel data regression with -reghdfe- considering country specific fixed effects. I have 20 countries over 5 years. I want to group the countries, some being advanced countries and some being emerging countries.
what would my analyses look like and would be there a benefit for grouping them ?
i would like to make a panel data regression with -reghdfe- considering country specific fixed effects. I have 20 countries over 5 years. I want to group the countries, some being advanced countries and some being emerging countries.
what would my analyses look like and would be there a benefit for grouping them ?
Code:
xtset country_id Year
Code:
reghdfe y x1 x2, absorb(country_id) vce(cluster country_id)
Comment