gpt4 book ai didi

python - 处理/转置 Pandas 数据框

转载 作者:太空宇宙 更新时间:2023-11-03 12:56:45 25 4
gpt4 key购买 nike

我得到了以下 Pandas 数据框:

Id    Category
1 type 2
1 type 3
1 type 2
2 type 1
2 type 2

我需要处理上述数据框并将其转置为:

Id Category_type_1 Category_type_2 Category_type_3
1 0 2 1
2 1 1 0

如果有人能展示用 python 编写此代码的最简单方法,我们将不胜感激。

最佳答案

我将 groupby 并使用 size

df.groupby(df.columns.tolist()).size().unstack().fillna(0)

enter image description here

关于python - 处理/转置 Pandas 数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38821985/

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