Skip to content

Instantly share code, notes, and snippets.

@mGalarnyk
Created February 16, 2021 19:59
Show Gist options
  • Save mGalarnyk/48e97e8652616ca8cc0ed43b526797b3 to your computer and use it in GitHub Desktop.
Save mGalarnyk/48e97e8652616ca8cc0ed43b526797b3 to your computer and use it in GitHub Desktop.
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