Hello together!
I am performing a fixed effects Regression with Panel data (several Managers over several Points of time) and try to evaluate the effect of Promotion on work Performance (I already discussed possible reverse causality issues).
My Regression basically Looks like this:
The Overall model is significant and also the binary Promotion explanatory variable is.
To improve my model i also want to estimate the effect size of Promotion:
So i tried:
this delivered a Cohens d of roughly 1.1 indicating a strong effect.
1) Now I am wondering whether Stata really calculated what i am interested in. Is this the effect i want to measure?
2) is esize correct in a Panel fixed effects Regression Setting? (what is about esizei,and estat esize?)
3) As i understand esize compares the mean of 2 Groups. Does my command divide the Group into Promotion == 0 and Promotion == 1? In this case The two Groups are not the same size
I am looking Forward to your thoughts on this.
Cheers, Alexander-Florian
I am performing a fixed effects Regression with Panel data (several Managers over several Points of time) and try to evaluate the effect of Promotion on work Performance (I already discussed possible reverse causality issues).
My Regression basically Looks like this:
Code:
xtreg Performance_indicator Promotion(a binary indicator) controlvariables, fe
To improve my model i also want to estimate the effect size of Promotion:
So i tried:
Code:
esize twosample performance, by(Promotion)
1) Now I am wondering whether Stata really calculated what i am interested in. Is this the effect i want to measure?
2) is esize correct in a Panel fixed effects Regression Setting? (what is about esizei,and estat esize?)
3) As i understand esize compares the mean of 2 Groups. Does my command divide the Group into Promotion == 0 and Promotion == 1? In this case The two Groups are not the same size
I am looking Forward to your thoughts on this.
Cheers, Alexander-Florian
Comment