Skip to content

Instantly share code, notes, and snippets.

@mGalarnyk
Last active February 20, 2021 09:52
Show Gist options
  • Save mGalarnyk/31d2df3d44e2d06cc9712f18084bdf86 to your computer and use it in GitHub Desktop.
Save mGalarnyk/31d2df3d44e2d06cc9712f18084bdf86 to your computer and use it in GitHub Desktop.
import ray
from ray.util.dask import ray_dask_get
import dask
import dask.dataframe as dd
import pandas as pd
import numpy as np
dask.config.set(scheduler=ray_dask_get) # Sets Ray as the default backend.
ray.init()
df = pd.DataFrame(np.random.randint(0, 100, size=(2**10, 2**8)))
df = dd.from_pandas(df, npartitions=10)
print(df.head(10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment