在Python中,可以使用matplotlib庫的plot函數(shù)來畫多個(gè)折線圖。下面是一個(gè)簡(jiǎn)單的示例:
import matplotlib.pyplot as plt
# 創(chuàng)建數(shù)據(jù)
x = [1, 2, 3, 4, 5]
y1 = [1, 2, 3, 4, 5]
y2 = [5, 4, 3, 2, 1]
# 畫圖
plt.plot(x, y1, label='Line 1')
plt.plot(x, y2, label='Line 2')
# 添加標(biāo)題和圖例
plt.title('Multiple Line Plots')
plt.legend()
# 顯示圖形
plt.show()
在這個(gè)示例中,我們創(chuàng)建了兩組數(shù)據(jù)y1
和y2
,然后使用plot函數(shù)分別畫出了這兩組數(shù)據(jù)的折線圖。最后使用title函數(shù)添加標(biāo)題,并使用legend函數(shù)添加圖例,再調(diào)用show函數(shù)顯示圖形。