gpt4 book ai didi

python - 如何使用没有索引的两列来旋转数据框

转载 作者:太空宇宙 更新时间:2023-11-03 13:07:06 24 4
gpt4 key购买 nike

我正在尝试旋转我当前的两列数据框,它目前看起来像这样:

one   two
a 12
b 32
c 12

我想将其转换为两个列都不会成为索引。我的预期结果是:

 a   b   c 
12 32 12

a、b 和 c 是新列。 12、32、12 是行中的值。

谢谢

最佳答案

使用 set_index 将列“一”移动到索引中,然后使用 T 进行转置。

a.set_index('one').T

输出:

one   a   b   c
two 12 32 12

信息:

<class 'pandas.core.frame.DataFrame'>
Index: 1 entries, two to two
Data columns (total 3 columns):
a 1 non-null int64
b 1 non-null int64
c 1 non-null int64
dtypes: int64(3)
memory usage: 28.0+ bytes
None

关于python - 如何使用没有索引的两列来旋转数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54950958/

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