-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
all/any ignoring bool_only
parameter
#25101
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
Comments
4 tasks
2 tasks
devin-petersohn
added a commit
to devin-petersohn/modin
that referenced
this issue
Feb 20, 2019
* pandas release notes: http://pandas.pydata.org/pandas-docs/stable/whatsnew/v0.24.0.html * Update imports to match changes in pandas * Add functionality for list of functions on `axis=1` for `apply` * Remove `pd.match` from API * Small regression in pandas requires regression in Modin * pandas-dev/pandas#25101 reports this issue * pandas-dev/pandas#25102 resolves this issue * TODO: Expose `pandas.Array` once we properly test
devin-petersohn
added a commit
to modin-project/modin
that referenced
this issue
Feb 21, 2019
* Update pandas version to 0.24 * pandas release notes: http://pandas.pydata.org/pandas-docs/stable/whatsnew/v0.24.0.html * Update imports to match changes in pandas * Add functionality for list of functions on `axis=1` for `apply` * Remove `pd.match` from API * Small regression in pandas requires regression in Modin * pandas-dev/pandas#25101 reports this issue * pandas-dev/pandas#25102 resolves this issue * TODO: Expose `pandas.Array` once we properly test * Finishing regression update in `all`/`any` * Update to pandas 0.24 in setup.py and requirements.txt * Bump to 0.24.1 * Update API and add a test for the API * Add test for API, update API * Update API test and finalize compatibility updates * Revert bug * Cleanup and add tests * Fix bug in test * Lint * Lint * Remove print * Fix transform tests and bug in transform * Add list test for test_rename * Fix transform bug
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Code Sample, a copy-pastable example if possible
Problem description
DataFrame.all
andDataFrame.any
are both ignoringbool_only
parameter. It does not seem to matter if there are booleans in the input or not.This was a regression in 0.24.0. On 0.23.4 it was working, expected output from code sample below.
Expected Output
Expected output is:
Output of
pd.show_versions()
[paste the output of
pd.show_versions()
here below this line]The text was updated successfully, but these errors were encountered: