2.31
2.21 1.97 3.56
我有一个包含两行的df,我想在新的df中使用第一行作为标题。
我的数据是这样的:
先创建cumcount
,再创建pivot
out = df.assign(key=df.groupby('ver').cumcount()).pivot('key','ver','time')
ver a b
key
0 2.31 3.45
1 2.21 3.75
2 1.97 3.87
3 3.56 4.02