I am trying to calculate AMEs that have resulted from a multinomial logistic regression using multiple imputation. My dependent variable (y) has 3 levels. At present, I have tried the following syntax to do so:
When I do so, Stata gives me the output for the base category only as far as I understand: "Expression: Pr(y==0), predict(pr)", but I am interested in calculating AMEs for y=1 and y=2. How can I go about doing so?
Thank you!
Code:
quietly mi estimate, dots post: mlogit y x1 x2 x3 mimrgns, dydx (*) predict(pr)
Thank you!
Comment