gpt4 book ai didi

python - 转置 Pandas 中具有公共(public)行值的行

转载 作者:行者123 更新时间:2023-12-01 07:31:03 24 4
gpt4 key购买 nike

我有一个包含三列的表,我想将 Score 和 time_step 列转置为每个唯一的stay_id 的行。那么使用 Pandas python 库最简单的方法是什么?

This is the original table: Thew desired output:

最佳答案

you have to use 'df.pivot'.

new_df= df.pivot(index='stay_id', columns='time_step',values='score')
print(new_df)

关于python - 转置 Pandas 中具有公共(public)行值的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57198611/

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