Hello all,
I'm estimating the effect of a time-invariant variable "DLA " on the profitability of firms. The DLA is a dummy variable. My data has 96 companies and 11 years. I understand a fixed effect model won't work because DLA will be perfectly collinear with i.firm. The code I used to test this was
. The DLA estimate was omitted. I then turned to pool OLS using code
. To my surprise, STATA generated an estimate for DLA by omitting one company.
I thought pooled OLS with dummies is the same as a fixed effect model with xtreg, but evidently, it is not. I'm not sure if the pooled OLS estimates is the right method and whether the estimated coefficient on DLA is unbiased.
I'm estimating the effect of a time-invariant variable "DLA " on the profitability of firms. The DLA is a dummy variable. My data has 96 companies and 11 years. I understand a fixed effect model won't work because DLA will be perfectly collinear with i.firm. The code I used to test this was
Code:
xtreg margin DLA size leverage growth current i.year, fe vce(cluster company1)
Code:
reg margin DLA size leverage growth current rd i.company1 i.year, vce(cluster company1)
I thought pooled OLS with dummies is the same as a fixed effect model with xtreg, but evidently, it is not. I'm not sure if the pooled OLS estimates is the right method and whether the estimated coefficient on DLA is unbiased.
Comment