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

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

one   two
 a    12
 b    32
 c    12

我想透视它,导致两列都不成为索引.我的预期结果是:

 a   b   c 
12  32  12

a,b和c是新列. 12,32,12是行中的值.

谢谢

最佳答案 使用set_index将列’one’移动到索引中,然后使用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
点赞