Created
February 16, 2021 19:59
-
-
Save mGalarnyk/48e97e8652616ca8cc0ed43b526797b3 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
from mars.session import new_session | |
ray_session = new_session(backend=’ray’).as_default() # Set Ray as the default backend. | |
import mars.dataframe as md | |
import mars.tensor as mt | |
t = mt.random.randint(100, size=(2**10, 2**8)) | |
df = md.DataFrame(t) | |
print(df.head(10).execute()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment