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()
运行以上代码后,将会绘制出一条连接了数据点的折线图。