Can you confirm whether my interpretation of average marginal effects estimated from multinomial logistic regression model is correct?
The predicted probability of enrolling in a general program is -.040 lower for females than males.
The predicted probablity of enrolling in an academic program is .175 greater for those with high SES than low SES.
A one unit change in read score increases the predicted probablity of enrolling in a vocational program by .011
To confirm, AMEs will be available for each of the three dependent variable categories (program: general, academic, vocational)?
Code:
use https://stats.idre.ucla.edu/stat/data/hsbdemo, clear mlogit prog i.female i.ses read write margins, dydx(*) post
The predicted probablity of enrolling in an academic program is .175 greater for those with high SES than low SES.
A one unit change in read score increases the predicted probablity of enrolling in a vocational program by .011
To confirm, AMEs will be available for each of the three dependent variable categories (program: general, academic, vocational)?
Comment