**已关闭。**此问题需要debugging details。它目前不接受回答。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答这个问题。
5天前关闭。
Improve this question的
我得到以下错误:
TypeError Traceback (most recent call last)
<ipython-input-28-4bc5025b7921> in <cell line: 7>()
5 plt.plot(years, jupyex_height)
6 plt.plot(years, trqshy_height)
----> 7 plt.legend(['hi', 'bye'])
8
9 plt.title('@jupyex vs @trqshy')
TypeError: 'list' object is not callable
字符串
当我实现下面的代码时:
years = range(2019, 2025)
jupyex_height = [149.0, 151.1, 153.6, 155.2, 155.4, 155.4]
trqshy_height = [150.2, 153.3, 155.9, 156.7, 157.0, 157.1]
plt.plot(years, jupyex_height)
plt.plot(years, trqshy_height)
plt.title('@jupyex vs @trqshy')
plt.legend(['hi', 'bye'])
型
注意:我想在同一个图中绘制多条线,并使用plt.legend
函数来区分多条线。
1条答案
按热度按时间zi8p0yeb1#
只需执行以下操作:
字符串
然后这个:
型
这个就行了。附图生成:
的数据