Dear Statalisters,
I am currently working on my Master's thesis and trying to finalize my paper using Stata 16. I have panel data with around 1000 firms for 15 years. My dependent variable is a count variable (between 0 and 850) and is highly over-dispersed (mean = 28.24978, variance = 2699.362). Therefore, I use a negative binomial regression with fixed effects, as advised by my supervisor, although not fully recommended by some Statalisters. However, as heteroskedasticity is present, I would like to use the vce(robust) option, which is not an option for xtnbreg. Does anyone have any advice on how to deal with this issue? Except for US_ceo and year_num, all variables are continuous. My code is as follows:
As you can see, I have also used the standardized values of my IVs and control variables, as advised by my supervisor. However, I do not really get why this is necessary for interpreting my interaction terms. Any advice will be greatly appreciated.
Best,
Chris
I am currently working on my Master's thesis and trying to finalize my paper using Stata 16. I have panel data with around 1000 firms for 15 years. My dependent variable is a count variable (between 0 and 850) and is highly over-dispersed (mean = 28.24978, variance = 2699.362). Therefore, I use a negative binomial regression with fixed effects, as advised by my supervisor, although not fully recommended by some Statalisters. However, as heteroskedasticity is present, I would like to use the vce(robust) option, which is not an option for xtnbreg. Does anyone have any advice on how to deal with this issue? Except for US_ceo and year_num, all variables are continuous. My code is as follows:
Code:
xtnbreg ten_k_total_counts std_ceo_age std_ceo_formal_education std_ceo_fin_position ceo_age_x_dynamism ceo_formal_education_x_dynamism ceo_fin_position_x_dynamism std_employees_num std_return_on_assets std_tobinsq US_ceo i.year_num, fe
Best,
Chris
Comment