欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python第三方库——Matplotlib_在同个figure中绘制多个图并给出legend

程序员文章站 2022-05-07 21:17:21
Python第三方库——Matplotlib_在同个figure中绘制多个图并给出legend。 import matplotlib.pyplot a...

Python第三方库——Matplotlib_在同个figure中绘制多个图并给出legend。

import matplotlib.pyplot as plt

line1, = plt.plot([1,2,3], linestyle='--')
line2, = plt.plot([3,2,1], linewidth=4)

# Create a legend for the first line.
plt.legend([line1, line2], ["Line 1", "Line 2"], loc=1)
plt.show()

Python第三方库——Matplotlib_在同个figure中绘制多个图并给出legend