用python画折线图
时间: 2023-07-12 17:50:06 浏览: 89
利用python画出折线图
要画折线图,需要用到Python的数据可视化库matplotlib。以下是一个简单的例子:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 画图
plt.plot(x, y)
# 设置坐标轴标签
plt.xlabel('X轴')
plt.ylabel('Y轴')
# 设置标题
plt.title('折线图')
# 显示图形
plt.show()
```
运行以上代码,就可以得到一个简单的折线图。如果需要更加详细的设置,可以参考matplotlib的文档。
阅读全文