请问pandas怎样读取excel文件一个工作表里面带有分组的数据?
时间: 2023-03-31 09:01:41 浏览: 161
pandas读取excel文件
5星 · 资源好评率100%
您好,可以使用pandas的read_excel函数读取excel文件,然后使用groupby函数对需要分组的列进行分组操作。具体操作可以参考以下代码:
import pandas as pd
# 读取excel文件
df = pd.read_excel('your_file_path.xlsx', sheet_name='your_sheet_name')
# 对需要分组的列进行分组操作
grouped = df.groupby('your_group_column')
# 对分组后的数据进行操作,例如求和
result = grouped.sum()
# 输出结果
print(result)
阅读全文