I am running the following analysis in Stata 14.
Is it possible to keep only selected variables in esttab, as I want the output only for i.age and i.smoke.
Code:
quietly mlogit bmi i.age i.smoke i.beef i.chicken if sex=1 eststo a quietly mlogit bmi i.age i.smoke i.beef i.chicken if sex=2 eststo b quietly esttab a b, ci ar2 eform esttab using BMI.rtf, ci r2 eform
Comment