Hey everyone

I would like to use marginsplot for something like this:

Code:
sysuse auto, clear

regress mpg i.rep78

margins rep78
marginsplot, horizontal recast(dot) recastci(rspike)
Array

I use
- "horizontal" because it makes the labels on that axis easier to read
- "recast(dot)" because I want to get rid of that line connecting the point estimates
- "recastci(rspike)" because I want to get rid of the caps at the end of the confidence intervals

What I would like to do is to change the marker for the dots, not the hollow circles, but something smaller. How do I do that? The reason why I want to do that is that in my application, the hollow circle is bigger than my (very small) confidence intervals, which looks confusing to readers.

Thanks!
JG