I would like to create a table of average marginals effects estimated from a multinomial logistic regression model. I would like each outcome category (general, academic, vocation) to have its own column and SEs to be listed below the coefficients.
The below mtable code from Spot13 works.
But is there another possible solution using margins, dydx(*) and estout (from SSC). Given the number of tables and variables I am working with, I was wondering if there's an easier solution than the one I found.
The below mtable code from Spot13 works.
Code:
use https://stats.idre.ucla.edu/stat/data/hsbdemo, clear mlogit prog i.female i.ses read write mtable, dydx (female) rowname(female) statistics (est se) foreach var of varlist ses read write { mtable, dydx (`var') rowname (`var') statistics (est se) below }
Comment