Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a distributed Dataframe API to Ray #1330

Merged
merged 17 commits into from
Dec 20, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing flake8 errors from imports
  • Loading branch information
devin-petersohn committed Dec 19, 2017
commit 6bf51d604fb9123ade300fdaf986e0bc347469aa
5 changes: 3 additions & 2 deletions python/ray/dataframe/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# from .dataframe import DataFrame
from .dataframe import *
from .dataframe import DataFrame
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry about that! Please see above.

from .dataframe import from_pandas
from .dataframe import to_pandas

ray.register_custom_serializer(pd.DataFrame, use_pickle=True)
ray.register_custom_serializer(pd.core.indexes.base.Index, use_pickle=True)