我想在matplotlib中用填充和非填充点注释一个图。我可以创建一个圆形贴片,但圆形与我的轴一起缩放,这不是我想要的效果。
我可以用
实现这一目标plt.plot(x,y,'.',markersize=10)
plt.plot(x,y,'o',markersize=10)
但即使我设置markerfacecolor=None
,这两个标记也会被填充。
答案 0 :(得分:1)
从消息来源看,您需要将markerfacecolor设置为'none'和None。
你能试试吗?
参考:http://www.mathworks.com/help/techdoc/ref/errorbarseriesproperties.html