Dear Statalist,
I am using a three-wave panel data set. Right now I am conducting a Fixed-Effects Analysis, regressing wage on the participation in an educational program.
My dataset looks like this:
Because selection into treatment is not at random (people are selected on different criteria that I do not have data on) I would like to not only control individual intercepts but furthermore individual slopes. Because it is likely that those selected into treatment have a steeper slope than those not selected (probably because they are more motivated anyway, but I have no data on that). The Random-Trend Model by Wooldridge (2011, chapt 11.2) apparently is the same kind of model.
I have to use Stata 11. Xtfeis, an ado by Volker Ludwig, that de-trends the data is only available beginning with Stata 12. I cannot do anything about that unfortunately.
Is it possible to "de-trend" or to calculate individual slopes in a different way? I once heard that it might be enough to simply include interactions with time.
So instead of
xtset id wave
xtreg wage treatment covariates, fe vce (cluster id)
--> coefficient about 10.4 (0.09)***
I tried
xtreg wage treatment##c.wage covariates, fe vce (cluster id)
--> coefficient about 0.12 (0.03)***
But I am not sure if that is actually correct.
Are there any ideas or suggestions?
Thank you very much!
Kind regards
Guest
PS: Due to data restrictions I cannot post any data examples or any results, so I can only make examples up. Because of that, the coefficients above don't make any sense. I just wanted to show that my coefficient gets smaller.
I am using a three-wave panel data set. Right now I am conducting a Fixed-Effects Analysis, regressing wage on the participation in an educational program.
My dataset looks like this:
id | wage | participation (1=yes) | wave | |
1 | 2400 | 1 | 1 | |
1 | 2500 | 0 | 2 | |
2 | 1800 | 0 | 1 | |
2 | 1900 | 1 | 2 | |
2 | 1900 | 0 | 3 |
I have to use Stata 11. Xtfeis, an ado by Volker Ludwig, that de-trends the data is only available beginning with Stata 12. I cannot do anything about that unfortunately.
Is it possible to "de-trend" or to calculate individual slopes in a different way? I once heard that it might be enough to simply include interactions with time.
So instead of
xtset id wave
xtreg wage treatment covariates, fe vce (cluster id)
--> coefficient about 10.4 (0.09)***
I tried
xtreg wage treatment##c.wage covariates, fe vce (cluster id)
--> coefficient about 0.12 (0.03)***
But I am not sure if that is actually correct.
Are there any ideas or suggestions?
Thank you very much!
Kind regards
Guest
PS: Due to data restrictions I cannot post any data examples or any results, so I can only make examples up. Because of that, the coefficients above don't make any sense. I just wanted to show that my coefficient gets smaller.
Comment