Dear experts,
Using STATA, I have performed fixed effect model for my panel data (7 years, 1000+ obs). In this model, 9 dummy variables indicating the industry are included, but 8 of those 9 get omitted.
To give a bit more information about my regression:
- The dependent variable is CEO compensation
- The independent and control variable include, among others, %females on board, %board independence, board size, tenure, age, gender dummy, industry dummies (10 groups of industries, so 9 dummies).
Industry is an important dummy variable, as it can have an effect on the amount of bonuses, and thus total compensation, can be given to the CEO (at least in the Netherlands). However, is this double? Since I'm already testing for individual effects? Anyways, I used the following code:
global id id
global year year
global ylist lncompensation
global xlist fob independence fib boardsize focc age ceotenure tenure firstyear female d2019 lnrevenue roa d1 d2 d3 d4 d5 d6 d7 d8 d9
* Set data as panel data*
sort $id $year
xtset $id $year
xtdescribe
xtsum $id $year $ylist $xlist
* Fixed effects*
xtreg $ylist $xlist, fe
eststo fe
*Random effects*
xtreg $ylist $xlist
eststo re
* Hausman test for fixed versus random effects model*
hausman fe re
The output of the Hausman test:
chi2(12) = (b-B)'[(V_b-V_B)^(-1)](b-B)
= 18.57
Prob > chi2 = 0.0995
(V_b-V_B is not positive definite)
Would you suggest any idea to get this dummy variable included in the FE regression. Or is it better to use the RE regression?
Thanks,
Tessa
Using STATA, I have performed fixed effect model for my panel data (7 years, 1000+ obs). In this model, 9 dummy variables indicating the industry are included, but 8 of those 9 get omitted.
To give a bit more information about my regression:
- The dependent variable is CEO compensation
- The independent and control variable include, among others, %females on board, %board independence, board size, tenure, age, gender dummy, industry dummies (10 groups of industries, so 9 dummies).
Industry is an important dummy variable, as it can have an effect on the amount of bonuses, and thus total compensation, can be given to the CEO (at least in the Netherlands). However, is this double? Since I'm already testing for individual effects? Anyways, I used the following code:
global id id
global year year
global ylist lncompensation
global xlist fob independence fib boardsize focc age ceotenure tenure firstyear female d2019 lnrevenue roa d1 d2 d3 d4 d5 d6 d7 d8 d9
* Set data as panel data*
sort $id $year
xtset $id $year
xtdescribe
xtsum $id $year $ylist $xlist
* Fixed effects*
xtreg $ylist $xlist, fe
eststo fe
*Random effects*
xtreg $ylist $xlist
eststo re
* Hausman test for fixed versus random effects model*
hausman fe re
The output of the Hausman test:
chi2(12) = (b-B)'[(V_b-V_B)^(-1)](b-B)
= 18.57
Prob > chi2 = 0.0995
(V_b-V_B is not positive definite)
Would you suggest any idea to get this dummy variable included in the FE regression. Or is it better to use the RE regression?
Thanks,
Tessa

Comment