标签: python python-2.7 pandas dataframe
我想在pandas数据帧上应用group by。我想按三列分组并计算它们的数量。我使用了以下代码
data.groupby(['post_product_list','cust_visid','date_time']).count()
但它似乎没有效果
答案 0 :(得分:0)
data.groupby(['post_product_list','cust_visid','date_time']).size()