Dear all,
I would like to reproduce the results of -xtreg, fe- by aid of the Mundlak model estimated with pooled OLS. I tried the following:
Comparing the results from the two estimation commands shows that the coefficient estimates indeed match. However, the standard errors are different. Do I miss something, or is there an econometric reason for why the standard errors are different? If so, is it possible to adjust the standard errors in the pooled OLS estimation, such that they coincide with the FE estimates?
Thanks a lot for looking into this.
Best,
Ingo
I would like to reproduce the results of -xtreg, fe- by aid of the Mundlak model estimated with pooled OLS. I tried the following:
Code:
webuse grunfeld, clear by company: egen mvalue_mean = mean(mvalue) sum mvalue_mean replace mvalue_mean = mvalue_mean - r(mean) by company: egen kstock_mean = mean(kstock) sum kstock_mean replace kstock_mean = kstock_mean - r(mean) xtreg invest mvalue kstock, fe cluster(company) reg invest mvalue kstock mvalue_mean kstock_mean, cluster(company)
Thanks a lot for looking into this.
Best,
Ingo
Comment