pandas读取csv文件后利用csv里的数据进行计算
时间: 2023-09-12 13:11:05 浏览: 163
python3 pandas读取csv
读取CSV文件可以使用pandas库中的read_csv函数。假设你的CSV文件名为"data.csv",包含两列数据,分别为"num1"和"num2",你可以使用以下代码读取CSV文件:
```python
import pandas as pd
df = pd.read_csv("data.csv")
```
读取CSV文件后,你可以使用pandas库中的函数对数据进行计算。例如,如果你想对"num1"和"num2"这两列数据求和并输出结果,可以使用以下代码:
```python
sum_num1 = df["num1"].sum()
sum_num2 = df["num2"].sum()
print("Sum of num1:", sum_num1)
print("Sum of num2:", sum_num2)
```
如果你想对"num1"和"num2"这两列数据进行平均数的计算并输出结果,可以使用以下代码:
```python
mean_num1 = df["num1"].mean()
mean_num2 = df["num2"].mean()
print("Mean of num1:", mean_num1)
print("Mean of num2:", mean_num2)
```
如果你想对"num1"和"num2"这两列数据进行其他计算,可以查看pandas库中的其他函数来实现。
阅读全文