python用pyplot绘制折线图的代码
时间: 2023-06-06 10:06:15 浏览: 92
利用python画出折线图
以下是使用pyplot绘制折线图的代码示例:
``` python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
plt.plot(x, y)
plt.xlabel("X Axis")
plt.ylabel("Y Axis")
plt.title("Line Chart example")
plt.show()
```
这段代码可以实现在一个坐标系上绘制出给定数据的折线图,并且添加了X轴、Y轴的标签和标题。
阅读全文