I need a specific set of markers for biostatistics. Is there a way to design your own markers or download them from the internet? thanks.
-
Login or Register
- Log in with
sysuse auto, clear gen symbol = "F" if foreign replace symbol = "D" if !foreign scatter mpg price, msymbol(none) mlabel(symbol) mlabposition(0)
sysuse bpwide gen symbol = "{fontface MarVoSym:|}" if sex==0 replace symbol = "{fontface MarVoSym:~}" if sex==1 graph twoway scatter bp_before bp_after if sex==0, mlab(symbol) mlabpos(0) msym(none) mlabcolor(blue) || scatter bp_before bp_after if sex==1, mlab(symbol) mlabpos(0) msym(none) mlabcolor(pink) legend(off)
Comment