熊猫列的多个索引

时间:2018-12-27 14:11:36

标签: python python-3.x pandas dataframe

我的熊猫有一个数据框:

(index) amount

0.0 0   73.74770979
0.0 1   34.36146516000001
1.0 0   25.759792399999995
1.0 1   117.37044276999995

我想要一个这样的DataFrame:

index  amount_0, amount_1
0.0    73....    34...
1.0    25....    117...

我该怎么做。我的索引列由“小时”和“边”列组成。

2 个答案:

答案 0 :(得分:2)

我相信plugins: [ // Define useful constants like TNS_WEBPACK new webpack.DefinePlugin({ "global.TNS_WEBPACK": "true", "process": undefined, }) 应该可以解决问题。

答案 1 :(得分:2)

如何使用"process": undefined。这使您可以指定要“取消堆栈”的索引级别:

df.unstack(level=-1)