I created a scatter plot of some data from a grouped Pandas Dataframe (see code below). I can't figure out how to set the marker type to an open/unfilled circle. None of the parameters I have found in other posts work (ms
, markeredgewidth
, markerfacecolor
, facecolor
, edgewidth
- all listed as "unknown properties"). Is there a parameter I am missing? I am using matplotlib and seaborn.
for key, group in grouped_by_model:
group.plot(ax=ax, kind='scatter', x='CURR MILEAGE', y='REPAIR TOTAL', color=colors[key], marker = 'o', s=20)