Howto copy a dask dataframe?
Mutation on dask.dataframe objects is rare, so this is rarely necessary.
That being said, you can safely just copy the object
from copy import copy
df2 = copy(df)
No dask.dataframe operation mutates any of the fields of the dataframe, so this is sufficient.