相反,熊猫融化没有指数

时间:2018-02-07 18:41:14

标签: python pandas dataframe

当没有使用索引时,与child_added相反的操作是什么?在下面的示例中,我需要从pd.DataFrame.melt获取df

df2

1 个答案:

答案 0 :(得分:1)

pivotcrosstabpivot_tablestack unstack,但在此之前您需要cumcount获取索引

#d=df.melt()
d.assign(index=d.groupby('variable').value.cumcount()).pivot('index','variable','value')
Out[1443]: 
variable  a  b   c
index             
0         1  4  10
1         2  5  11
2         3  6  12