gpt4 book ai didi

python - 如何使用列名称旋转 pandas.dataframe

转载 作者:行者123 更新时间:2023-12-02 02:45:51 24 4
gpt4 key购买 nike

我有以下 DataFrame,以 Timestamp 作为索引:

Timestamp 40_x 40_y 40_z 60_x 60_y 60_z 80_x 80_y 80_z
10:00 a b c d e f g h i
10:10 a2 b2 c2 d2 e2 f2 g2 h2 i2

我想将其旋转到以下 DataFrame 中:

                  x   y   z
Timestamp range
10:00 40 a b c
10:00 60 d e f
10:00 80 g h i
10:10 40 a2 b2 c2
10:10 60 d2 e2 f2
10:10 80 g2 h2 i2

我有一个范围列表:[40, 60, 80],它可以包含更多值。

最佳答案

MultiIndex 然后 stack 怎么样?

df.columns = df.columns.str.split('_',expand=True)

print(df)

40 60 80
x y z x y z x y z
Timestamp
10:00 a b c d e f g h i
10:10 a2 b2 c2 d2 e2 f2 g2 h2 i2

df1 = df.stack(0)

print(df1)

x y z
Timestamp
10:00 40 a b c
60 d e f
80 g h i
10:10 40 a2 b2 c2
60 d2 e2 f2
80 g2 h2 i2

关于python - 如何使用列名称旋转 pandas.dataframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62818987/

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