Matplotlib:散射颜色始终为蓝色

时间:2016-12-07 13:00:17

标签: python-2.7 matplotlib

我有以下代码:

ax2.scatter(Px, Py, Pz,color = 'red',facecolor='red',edgecolor='red',s=60)

但是当它被绘制时总是以蓝色显示散点图,我可以改变的唯一颜色是边缘颜色。发生了什么事?

1 个答案:

答案 0 :(得分:0)

我解决了我的问题。我将代码更改为:

 ax2.scatter(Px, Py, Pz,c ='red',edgecolor='red',s=60)

并且有效。