在python中的多个列上分组

时间:2018-05-09 15:23:59

标签: python pandas pandas-groupby

我有一个熊猫数据框,其中包含以下列:yearmonthsource以及其他一些字段。我希望按yearmonthsource分组,我希望`source``在groupby之后显示为列。

           source1, source2, source3,....
2017, jan
2017, feb
...

这就是我的代码的样子

df.pivot_table(index = ['year','month'], columns = 'source', aggfunc = np.size, fill_value = 0)

但我收到以下错误消息

Reindexing only valid wit uniquely valued index objects

0 个答案:

没有答案