I think there’s a couple approaches I would take:
- simply decorate with
@dask.delayed
and calldask.compute(scheduler=client)
whereclient = distributed.Client()
on the results - Or use
ds.map_blocks
Here’s an example with plotting
I think there’s a couple approaches I would take:
@dask.delayed
and call dask.compute(scheduler=client)
where client = distributed.Client()
on the resultsds.map_blocks
Here’s an example with plotting