Skip to content

Instantly share code, notes, and snippets.

@mGalarnyk
Created February 16, 2021 19:58
Show Gist options
  • Save mGalarnyk/7c2d9516e1e936d96b578a6f6ead9c7a to your computer and use it in GitHub Desktop.
Save mGalarnyk/7c2d9516e1e936d96b578a6f6ead9c7a to your computer and use it in GitHub Desktop.
import ray
# Modin defaults to backing Ray’s object store with disk.
# Start Ray before importing modin to use shared memory instead.
ray.init()
import modin.pandas as pd
import numpy as np
frame_data = np.random.randint(0, 100, size=(2**10, 2**8))
df = pd.DataFrame(frame_data)
print(df.head(10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment