I am trying to run a pooled probit, random effects probit and fixed effects and producing them on the same table. Anyone who knows how can I go with Code on this please help.
-
Login or Register
- Log in with
// Note that I use esttab // Download estout from ssc qui eststo m1: probit y x qui xtset idvar timevar qui eststo m2: xtprobit y x i.idvar // note that there's no Stata implementation for this // see h xtprobit qui eststo m3: xtprobit y x, re cls esttab m1 m2 m3, compress
webuse union, clear xtlogit union age grade i.not_smsa i.year, fe
Comment