标签: python pandas group-by
我目前有一个数据帧dfB,如下所示
我的目标是现在绘制每周的订单数量。不过,我不确定如何将每周的most_recent_order_date列进行分组。我该怎么办?
答案 0 :(得分:1)
如果尚未将日期列转换为datetime dtype。
datetime
dfB['most_recent_order_date'] = pd.to_datetime(dfB.most_recent_order_date)
然后使用resample
resample
dfB.resample('W-Mon', on='most_recent_order_date').sum()