pandas读取csv文件并作sum/count/max/min/idxmin/idxmax操作
时间: 2023-09-04 21:17:08 浏览: 123
Python使用Pandas对csv文件进行数据处理的方法
5星 · 资源好评率100%
首先需要导入pandas库:
```python
import pandas as pd
```
接下来,使用`read_csv()`方法读取csv文件:
```python
df = pd.read_csv('file.csv')
```
其中,`file.csv`是你要读取的csv文件名。
接下来,可以对数据进行各种操作,如:
1. sum操作
```python
df.sum()
```
2. count操作
```python
df.count()
```
3. max操作
```python
df.max()
```
4. min操作
```python
df.min()
```
5. idxmin操作
```python
df.idxmin()
```
6. idxmax操作
```python
df.idxmax()
```
其中,`df`是你读取的csv文件的数据框。
以上操作可以针对整个数据框进行,也可以针对某一列数据进行。例如,对第一列进行sum操作:
```python
df['col1'].sum()
```
其中,`col1`是你要操作的列名。
阅读全文