我有一个熊猫数据框,其中包含以下列:year
,month
,source
以及其他一些字段。我希望按year
,month
和source
分组,我希望`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