I want to plot multiple scatter plots upon grouping them by category, here by region. However, I want to be able to arbitrarily change the line color and marker of any of the individual graphs, whether as measured by the graph position, the subset of the data (i.e., region == "West")...etc. For example, here the color line is orange and the marker is o, but how would I go about setting marker(+) and color(green) for the subplot where region == "West" ?
Thanks in advance!
Code:
sysuse census, clear scatter pop divorce, by(region, ixaxes) sort connect(l) msymbol(o) ytitle("") color(orange)
Comment