-
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
[DataFrame] Implemented cummax, cummin, cumsum, cumprod #1705
[DataFrame] Implemented cummax, cummin, cumsum, cumprod #1705
Conversation
Test PASSed. |
python/ray/dataframe/dataframe.py
Outdated
Returns: | ||
The cumulative maximum of the DataFrame. | ||
""" | ||
if(axis == 1): |
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 are a couple instances if this that are probably linting errors. Should just be if axis == 1:
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.
Ok, I will fix these.
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.
Looks good to me assuming the linting test passes (on the travis PR build on the main repo).
Test PASSed. |
Test PASSed. |
Test failures unrelated. OK to merge. |
@hsubbaraj I tried to rebase for you but ran into problems because you were editing your master branch. I went ahead and submitted a new PR with the same commit history.