Hello,
I have a beginner question. I am trying to run a model with fixed effect. Trying some tests, I found that fe model with vce(robust) option would be good.
And I also want to check a treatment effect. So, I changed it to LSDV (dummy variable) using vce(robust) option.
My concern is that the robust standard errors are not the same. I would appreciate if you let me know how to make it.
Thank you.
I have a beginner question. I am trying to run a model with fixed effect. Trying some tests, I found that fe model with vce(robust) option would be good.
Code:
xtreg y x1 x2, fe vce(robust)
And I also want to check a treatment effect. So, I changed it to LSDV (dummy variable) using vce(robust) option.
Code:
areg y I.treatment|x1 I.treatment|x2, absorb(id) vce(robust)
Thank you.
Comment