Skip to content

Modin: Pandas on Ray - Make your pandas code faster by changing one line of code

License

Notifications You must be signed in to change notification settings

crystalzyan/modin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Modin

https://travis-ci.com/modin-project/modin.svg?branch=master https://readthedocs.org/projects/modin/badge/?version=latest

Modin is the parent project of Pandas on Ray

Modin can be installed with pip: pip install modin

Pandas on Ray

Pandas on Ray is a project designed to effortlessly scale your pandas code requiring a change of only a single line of code

pandas Pandas on Ray
# Normal pandas import
import pandas as pd

df = pd.DataFrame({'col1': [1, 2, 3],
                   'col2': [1.0, 2.0, 3.0]})

df.sum()
...
# Pandas on Ray import
import modin.dataframe as pd

df = pd.DataFrame({'col1': [1, 2, 3],
                   'col2': [1.0, 2.0, 3.0]})

df.sum()
...

Pandas on Ray is currently for experimental use only. Requests and contributions are welcome!

About

Modin: Pandas on Ray - Make your pandas code faster by changing one line of code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.5%
  • Shell 0.5%