Hello,
I am running a number of mlogit models with several variations of the dependent and one of the independent variables. I would like to export the output to Excel with the models being reported next to each other like simple outreg would for OLS.
Currently, I am using the following but the models are stacked and very hard to compare:
foreach i in aa bb cc {
foreach j in dd ee ff {
mlogit residrank_`j' `i' at_log , base(1)
est store model
estout model using mlogit.csv, stats(r2_p chi2 N, labels("Pseudo R-squared" "Model chi-square" "N")) cells(b(star fmt(%9.2f)) t(par)) varwidth(30) modelwidth(10) label unstack append
}
}
Would be grateful for any suggestions.
Thanks in advance!
I am running a number of mlogit models with several variations of the dependent and one of the independent variables. I would like to export the output to Excel with the models being reported next to each other like simple outreg would for OLS.
Currently, I am using the following but the models are stacked and very hard to compare:
foreach i in aa bb cc {
foreach j in dd ee ff {
mlogit residrank_`j' `i' at_log , base(1)
est store model
estout model using mlogit.csv, stats(r2_p chi2 N, labels("Pseudo R-squared" "Model chi-square" "N")) cells(b(star fmt(%9.2f)) t(par)) varwidth(30) modelwidth(10) label unstack append
}
}
Would be grateful for any suggestions.
Thanks in advance!
Comment