Hi all
I'm wondering if there is a way to jitter or offset points in a marginsplot graph such that the points/CIs are not plotted directly on top of each other? Nonsensical example code and graph below of what i'm trying to prevent.

For example, something more like this (from: https://marginaleffects.com/bonus/plot.html)
I'm wondering if there is a way to jitter or offset points in a marginsplot graph such that the points/CIs are not plotted directly on top of each other? Nonsensical example code and graph below of what i'm trying to prevent.
Code:
sysuse auto
mlogit foreign headroom
margins, at(headroom=(1(1)5))
marginsplot, plotdim(headroom) ///
plotopts(connect(none))
For example, something more like this (from: https://marginaleffects.com/bonus/plot.html)

Comment