matplotlib.pyplot绘制折线图代码
时间: 2023-05-18 20:04:38 浏览: 159
python使用matplotlib绘制折线图的示例代码
下面是一个简单的 matplotlib.pyplot 绘制折线图的代码示例:
```python
import matplotlib.pyplot as plt
# x 和 y 数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制折线图
plt.plot(x, y)
# 添加标题和标签
plt.title("折线图示例")
plt.xlabel("X 轴")
plt.ylabel("Y 轴")
# 显示图形
plt.show()
```
这段代码将会绘制一个简单的折线图,其中 x 轴表示 1 到 5 的整数,y 轴表示 2 到 10 的整数。您可以根据需要修改 x 和 y 数据,以及标题和标签。
阅读全文