Dear Stata users,
I am trying to include year and country-industry dummies to my regression analysis in the following form:
However, Stata takes very long time to produce this regression output and I wonder if I am doing it wrong. Fyi, I have over 7000 unique values for country_industry. I would appreciate if you could have any suggestions to speed up the calculation process.
If not, should I use just year and industry dummies instead of country_industry dummies in this case?
Many Thanks
I am trying to include year and country-industry dummies to my regression analysis in the following form:
Code:
egen country_industry=group( iso isic ) xtset country_industry year reg growth var1 var2 var3 var4 i.year i.country_industry , cluster( country_industry)
If not, should I use just year and industry dummies instead of country_industry dummies in this case?
Many Thanks
Comment