Created
February 16, 2021 19:58
-
-
Save mGalarnyk/7c2d9516e1e936d96b578a6f6ead9c7a to your computer and use it in GitHub Desktop.
Taken from Stephanie Wang's gist: https://gist.github.com/stephanie-wang/7400fd3b50bef0c8ce2d5b29f58c2530#file-pyspark_on_ray-py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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