Python使用matplotlib读取文档并绘制折线图
时间: 2024-01-08 22:04:17 浏览: 72
Python折线图绘制
首先,需要安装matplotlib库,在命令行中输入pip install matplotlib即可安装。
然后,在代码中导入matplotlib库:
```
import matplotlib.pyplot as plt
```
读取文件的方式有很多种,这里以读取csv文件为例:
```
import csv
x = []
y = []
# 使用csv模块读取数据
with open('data.csv', 'r') as csv_file:
csv_reader = csv.reader(csv_file)
# 跳过表头
next(csv_reader)
for row in csv_reader:
x.append(int(row[0]))
y.append(int(row[1]))
```
然后,使用matplotlib的plot函数绘制折线图:
```
plt.plot(x, y)
plt.show()
```
如果需要保存图片,可以使用savefig函数:
```
plt.savefig('figure.png')
```
注意:上面的代码假设数据文件是这样的:
```
x,y
1,2
2,3
3,4
4,5
5,6
```
这是一个简单的例子,关于matplotlib的用法还有很多其他细节,详情可以参考官方文档:https://matplotlib.org/stable/index.html
阅读全文