Is there a difference between clogit and xtlogit, fe? It appears to me they both do conditional logistic regression with fixed effects.
-
Login or Register
- Log in with
egen x1bar = mean(x1), by(id) egen x2bar = mean(x2), by(id) ... egen xKbar = mean(xK), by(id) probit y x1 ... xK x1bar ... xKbar z1 ... zJ i.year, vce(cluster id) margins, dydx(*)
Comment