gpt4 book ai didi

python - DataFrame 'groupby' 正在修复带有索引的组列

转载 作者:行者123 更新时间:2023-12-04 07:43:52 27 4
gpt4 key购买 nike

我使用了一个简单的“groupby”来压缩 Pandas 数据框中的行:

df = df.groupby(['col1', 'col2', 'col3']).sum()
在新的 DataFrame 'df' 中,'groupby' 函数中使用的三列现在固定在索引中,不再是列索引 0、1 和 2 - 以前的列索引 4 现在是列索引 0。
如何阻止这种情况发生/重新包含三个“groupby”列以及原始数据?

最佳答案

尝试 -

df = df.groupby(['col1', 'col2', 'col3'], as_index = False).sum()
#or
df = df.groupby(['col1', 'col2', 'col3']).sum().reset_index()

关于python - DataFrame 'groupby' 正在修复带有索引的组列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67297783/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com