为了账号安全,请及时绑定邮箱和手机立即绑定

matplotlib.axes.Axes.legend 无法将 labelcolor 识别为参数

matplotlib.axes.Axes.legend 无法将 labelcolor 识别为参数

江户川乱折腾 2023-05-16 09:55:28
我在尝试设置图例条目的颜色时遇到了一些问题。我想选择与他们所指的线相同的颜色。我在这里发布一个可运行的脚本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()

//img4.sycdn.imooc.com/646320ea0001388b03700247.jpg

查看完整回答
反对 回复 2023-05-16
  • 1 回答
  • 0 关注
  • 230 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信