Hi, I'm trying to produce some graphs of marginal effects but they are almost unreadable. This is my model:
The dep_var has 5 outcomes and var1 has three categories. Ideally, I'd like to produce separate marginal effects graphs for each of the three categories of var1. I've been using this to estimate the marginal effects:
This produces marginal effects for each category other than the base category, but using marginsplot results in a very messy graph. Is there any way to just plot the marginal effects only for one category of var1?
Thanks
Code:
ologit dep_var i.var1##c.var2
Code:
margins, dydx(var1) at(var2=(10(10)120))
Thanks
Comment