在matplotlib中设置非标准颜色和圆圈

时间:2016-08-18 09:17:06

标签: python matplotlib plot colors

以下代码绘制数据sameple,其中每个数据点是一个红色圆圈:

 plt.plot(hour, residuals, 'ro') plt.plot(hour, residuals, 'ro')

行。现在我想将红色r改为灰色。颜色灰色用'0.75'表示。因为没有与灰色相对应的标准字母。我该如何设置灰色圆圈?我试过了:

grey = '0.75'
plt.plot(hour, residuals, 'ro') plt.plot(hour, residuals, 'greyo')

和...

plt.plot(hour, residuals, 'ro') plt.plot(hour, residuals, color=grey, 'o')

但上述情况似乎都不起作用。任何人都知道如何在matplotlib中设置它?

0 个答案:

没有答案