I'd like to run a simple LSDV vs. within-estimator logit regression, comparing the results. (In content: Testing the effect of GDP on a country's participation in a intergovernmental conference)
I've run the following:
From all I've read so far, the first (LSDV) should give me the same coefficients than the second (which provides the same coefficients as xtlogit, but is preferred because it accepts clustered standard errors in a further model specificaition). However, that is not true (also tried with more variables). Coefficients and the p-value differ moderately.
Why is this the case?
I've run the following:
Code:
logit participation gdp i.country clogit participation gdp, group(country)
Why is this the case?
Comment