我正在努力将 Pandas/Numpy 代码转换为 Dask 以处理更大的数据集。我似乎无法重新创建以下 Pandas/Numpy 代码:
df['days_to_complete'] = np.busday_count(begindates=df['time_order_date'].values.astype('datetime64[D]'),enddates=df['time_complete_date'],weekmask='1111111',holidays=hols_list)
这将返回 time_order_date 和 time_complete_date 之间的整数天数,同时考虑工作周和假期列表。它在我的数据框中创建并填充了一个新列,没有问题。
在 Dask,我尝试了以下方法:
map_partitions 调用 numpy 函数:
ddf['days_to_complete'] = ddf.time_order.map_partitions(func=np.busday_count,args= ddf['time_order_date'].values.astype('datetime64[D]'),ddf['time_complete_date']),meta=(None, 'i8'))
还使用 lambda 的 map_partitions:
ddf['days_to_complete'] = ddf.map_partitions(lambda ddf: ddf.assign(result = np.busday_count(begindates=ddf['time_order_date'].values.astype('datetime64[D]'),enddates=ddf['time_complete_date'],weekmask='1111111',holidays=hols_list)),meta=(None,'i8'))
并在运行 ddf.compute() 后得到以下错误:
TypeError: busday_count() got multiple values for argument 'begindates'
您如何以并行处理/对 Dask 友好的方式最好地使用这个 numpy 函数? 我没有成功使用 Dask 文档/示例或其他 SO 线程。我还想使用 Pandas CustomBusinessHour rollfoward,就像我在这里使用基本熊猫一样:
bis_hour = CustomBusinessHour(n=1,weekmask='Mon Tue Wed Thu Fri Sat Sun',holidays=hols_list,start = bus_hours_start,end = bus_hours_end,offset=0)
df['time_order_bis'] = pd.to_datetime(df['time_order'])
df['time_order_bis'] = df['time_order_bis'].apply(lambda row: bis_hour.rollforward(row))
这会将订单时间“前滚”到定义的客户营业时间内(周六订单现在是周一早上 7 点,一个工作日)。谢谢!
编辑: 我试过编写和调用一个函数:
def bdays(df):
return np.busday_count(df.time_order_date.values.astype('datetime64[D]'),df.time_complete_date,weekmask='1111111',holidays=hols_list)
ddf['days_to_complete'] = ddf.map_partitions(bdays,df=ddf,meta=('days_to_complete','i8')).compute()
我收到以下错误:TypeError: bdays() got multiple values for argument 'df'