我目前有一个数据框dfB,如下所示
我的目标是现在绘制每周的订单数量。不过,我不确定如何将每周的most_recent_order_date列进行分组。我怎样才能做到这一点?
最佳答案
如果尚未将date列转换为datetime
dtype。
dfB['most_recent_order_date'] = pd.to_datetime(dfB.most_recent_order_date)
然后使用
resample
dfB.resample('W-Mon', on='most_recent_order_date').sum()
关于python - 通过SQL在 Pandas 中按周分组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52225399/