标签: python dataframe dask
我想知道是否有dask个等效的熊猫替换方法。例如,我想用一个值更改值的列表。在大熊猫的情况下,我可以;
dask
df = df.replace(lst,val) #lst is a list where all of the values in the list if found in the dataframe should be changed to a value called val.
在这个问题上,谁能帮助我。
谢谢
迈克尔