要用matplotlib畫折線圖,可以按照以下步驟進行操作:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5] # x軸數據
y = [5, 7, 3, 8, 4] # y軸數據
plt.figure()
plt.plot(x, y)
plt.title('折線圖') # 標題
plt.xlabel('x軸') # x軸標簽
plt.ylabel('y軸') # y軸標簽
plt.show()
綜合起來,完整的代碼如下所示:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5] # x軸數據
y = [5, 7, 3, 8, 4] # y軸數據
plt.figure()
plt.plot(x, y)
plt.title('折線圖') # 標題
plt.xlabel('x軸') # x軸標簽
plt.ylabel('y軸') # y軸標簽
plt.show()
運行代碼,就可以生成一個簡單的折線圖。