This is tricky in Matplotlib… you have to use a string "None"
instead of the value None
, then you can just do:
plt.plot(x,y2, 'o', ms=14, markerfacecolor="None",
markeredgecolor="red", markeredgewidth=5)
This is tricky in Matplotlib… you have to use a string "None"
instead of the value None
, then you can just do:
plt.plot(x,y2, 'o', ms=14, markerfacecolor="None",
markeredgecolor="red", markeredgewidth=5)