求订单等时间间隔技巧

使用dataframe.shift函数,将dataframe记录往下一行平移后,再做相减差分,再做相隔天数的统计。

order_diff = grouped_user.apply(lambda x:x.order_dt - x.order_dt.shift())
order_diff.head(10)

order_diff.describe()

(order_diff / np.timedelta64(1, ‘D’)).hist(bins = 20)
plt.show()

原文链接:https://blog.csdn.net/weixin_44266342/article/details/94187331

你可能感兴趣的:(数据预处理)