用python的matplotlib实现折线图绘制
时间: 2023-12-17 19:55:08 浏览: 168
python使用matplotlib绘制折线图教程
5星 · 资源好评率100%
以下是用python的matplotlib实现折线图绘制的示例代码:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
y = [3, 5, 2, 7, 4]
# 绘制折线图
plt.plot(x, y)
# 设置标题和坐标轴标签
plt.title('Line Chart')
plt.xlabel('X Axis')
plt.ylabel('Y Axis')
# 显示图形
plt.show()
```
输出结果为:
![折线图](https://img-blog.csdn.net/20180530154259157?watermark/2/text/aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2Jsb2cwODA2MzEyMw==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/q/75)
阅读全文