這看起來很簡單,我簡直不敢相信我在拉我的頭髮。 我有這樣使用multiindex在pandas pivot_table上創建一個新列
Name income expenses 2015 2016 2015 2016 Joe Doe 2 4 5 7 Jane Doe 2 4 5 7 Doe Joe 2 4 5 7 Doe Jane 2 4 5 7
一個pivot_table我只是想添加一個計算列profit_loss =(收入 - 支出) 我認爲這將是這樣的:
df['profit_loss'] = df['income'] - df['expenses]
我只得到錯誤。
無需爲創建此pivot_table的基表編寫大量代碼或準備,是否有更簡單的方法來處理pandas pivot_table上的MultiIndexes
?
可你[文章](http://stackoverflow.com/posts/39581185/edit)'df.to_dict()'的輸出,所以我們可以更容易地構建多索引DF? – MaxU