我在尝试设置图例条目的颜色时遇到了一些问题。我想选择与他们所指的线相同的颜色。我在这里发布一个可运行的脚本import matplotlib.pyplot as pltx, y = [1,2],[1,2]fig = plt.figure()ax = fig.add_subplot(111)ax.plot(x,y,label='test',color='r')ax.legend(labelcolor='r')plt.show()这就是我得到的错误Traceback (most recent call last): File "test.py", line 11, in <module> ax.legend(labelcolor='r') File "/home/username/anaconda3/lib/python3.7/site-packages/matplotlib/axes/_axes.py", line 406, in legend self.legend_ = mlegend.Legend(self, handles, labels, **kwargs)TypeError: __init__() got an unexpected keyword argument 'labelcolor'但是我在图例文档中看到labelcolor 应该作为参数。你有什么建议吗?
1 回答
慕的地6264312
TA贡献1817条经验 获得超6个赞
将 matplotlib 升级到3.3.0 版本
然后再试一次。
import matplotlib.pyplot as plt
x, y = [1,2],[1,2]
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(x,y,label='test',color='r')
ax.legend(title='Guide', labelcolor='red')
plt.show()
添加回答
举报
0/150
提交
取消