我有一个df
Family Product Date Price
A 1 7/17/2017 3
B 3 2/5/2018 5
A 1 7/17/2017 4
A 1 7/17/2017 4
B 3 2/5/2018 5
我希望我的输出看起来像
Family Product Date Price Count
A 1 7/17/2017 3 2
B 3 2/5/2018 5 1
A 1 7/17/2017 4 2
A 1 7/17/2017 4 2
B 3 2/5/2018 5 1
我正在尝试获得所需输出的代码(每三列的价格不同)
df['Count']=df.groupby(['Family','Product','Date'])['Price'].nunique()
,我得到的错误是“ TypeError:插入的列与框架索引的索引不兼容”。我希望有人可以帮助我