plot函數是Matplotlib庫中用于繪制圖形的函數,常用于繪制線圖。它的基本使用方法如下:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5] # x軸數據
y = [10, 20, 15, 25, 30] # y軸數據
plt.plot(x, y)
plt.title("Line Plot") # 添加標題
plt.xlabel("x") # 添加x軸標簽
plt.ylabel("y") # 添加y軸標簽
plt.show()
完整示例代碼如下:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [10, 20, 15, 25, 30]
plt.plot(x, y)
plt.title("Line Plot")
plt.xlabel("x")
plt.ylabel("y")
plt.show()
運行以上代碼后,將會繪制出一條連接了數據點的折線圖。