Python Pandas - 聚合错误列的数据透视表

时间:2018-05-22 12:57:39

标签: python pandas

我的数据框看起来像这样(dfFF):

    Sector  Country    Currency    Amount    Year
0   Charity    UK         GBP      328163    2018
1   Public     UK         GBP      120480    2017
2   Public     UK         GBP      123086    2017
3   Public     UK         GBP      125198    2017
4   Public     UK         GBP      1502793   2017
5   Public     UK         GBP      249999    2016

我想透视它,所以我的Country行为SectorAmount总和为dfFFB = pd.pivot_table(dfFF, index=['Country'], columns=['Sector'], aggfunc='sum', fill_value=0)

我使用代码:

    Year
Sector     Charity     Public
Country     
   UK       4036       28234

我明白了:

year

amount求助,而不是Amount求和。

我如何强制它总结{{1}}?

0 个答案:

没有答案