-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
abc5376
Adding dataframe object and minor APIs
devin-petersohn 1eb5f24
Adding reduce functionality
devin-petersohn 9279e41
Adding some print and making reduce work on current Ray
devin-petersohn f13cc38
Cleanup
devin-petersohn e736d3f
Added new functionality and docs.
devin-petersohn 44b5e15
Adding more functionality.
devin-petersohn 9430d5b
New functionality with older cleanup
devin-petersohn d9fa1be
Complying with flake8 formatting
devin-petersohn 8f1f91b
Added tests and addressed reviewer comments
devin-petersohn 7de0254
Complying with flake8.
devin-petersohn 8f3f054
Adding pandas to travis and requirements doc
devin-petersohn 26a68c3
Fixing flake8 failures
devin-petersohn 6bf51d6
Fixing flake8 errors from imports
devin-petersohn 7dddd0e
Fixing import error
devin-petersohn 23b6222
Fixing import errors
devin-petersohn 3b32a84
Addressing reviewer comments
devin-petersohn e171e66
Addressing lint error
devin-petersohn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixing flake8 errors from imports
- Loading branch information
commit 6bf51d604fb9123ade300fdaf986e0bc347469aa
There are no files selected for viewing
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
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 | ||
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) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
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.