类似未回答的问题:Row by row processing of a Dask DataFrame
我正在处理行数百万的数据帧,所以现在我尝试并行执行所有数据帧操作。我需要转换为Dask的一个这样的操作是:
for row in df.itertuples():
ratio = row.ratio
tmpratio = row.tmpratio
tmplabel = row.tmplabel
if tmpratio > ratio:
df.loc[row.Index,'ratio'] = tmpratio
df.loc[row.Index,'label'] = tmplabel
在Dask中按索引设置值或在行中有条件地设置值的适当方法是什么?鉴于.loc
在Dask中不支持项目分配,Dask中似乎没有set_value
,at[]
或iat[]
。
我尝试将map_partitions与assign一起使用,但我没有看到任何在行级执行条件赋值的能力。
答案 0 :(得分:4)
Dask数据帧不支持有效的迭代或行分配。通常,这些工作流程很难很好地扩展。它们在熊猫本身也很慢。
相反,您可以考虑使用Series.where方法。这是一个最小的例子:
In [1]: import pandas as pd
In [2]: df = pd.DataFrame({'x': [1, 2, 3], 'y': [3, 2, 1]})
In [3]: import dask.dataframe as dd
In [4]: ddf = dd.from_pandas(df, npartitions=2)
In [5]: ddf['z'] = ddf.x.where(ddf.x > ddf.y, ddf.y)
In [6]: ddf.compute()
Out[6]:
x y z
0 1 3 3
1 2 2 2
2 3 1 3