在matplotlib中给已经画好的线添加一条线,可以使用plot
函数来实现。具体步骤如下:
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
plot
函数绘制第一条线,并保存返回的线对象。x1 = [1, 2, 3, 4, 5]
y1 = [2, 4, 6, 8, 10]
line1, = ax.plot(x1, y1, label='Line 1')
plot
函数绘制第二条线,并保存返回的线对象。x2 = [1, 2, 3, 4, 5]
y2 = [5, 4, 3, 2, 1]
line2, = ax.plot(x2, y2, label='Line 2')
plot
函数绘制要添加的线,并保存返回的线对象。x3 = [1, 2, 3, 4, 5]
y3 = [3, 3, 3, 3, 3]
line3, = ax.plot(x3, y3, label='Line 3')
legend
函数添加图例。ax.legend()
show
函数显示图形。plt.show()
这样,就在已经画好的线上添加了一条新的线。注意,每条线都需要保存返回的线对象,以便后续对其进行操作(如修改线的样式、标签等)。
关于matplotlib的更多用法和功能,可以参考腾讯云的数据可视化产品Matplotlib介绍:https://cloud.tencent.com/document/product/1121/36539
领取专属 10元无门槛券
手把手带您无忧上云