-
Notifications
You must be signed in to change notification settings - Fork 915
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 pandas-2.x
support in cudf
#14916
Merged
Merged
Conversation
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
This PR updates value_counts behavior to match pandas-2.x, the result name will be count (or proportion if normalize=True is passed), and the index will be named after the original object name. This PR also fixes two dtype APIs that are breaking changes on pandas side.
This PR drops `inplace` parameters in categorical methods, these are also removed as part of pandas-2.0
…12843) This PR raises an error when numeric_only=True for rank if the Series is of non-numeric dtype.
This PR drops support for `Series.is_monotonic` & `Index.is_monotonic`. Instead, the alternative will be `.is_monotonic_increasing`.
This PR removes support for `datetime_is_numeric` parameter in `describe`.
…in `MultiIndex.copy` (#12898) This PR removes `dtype` in Index & `MultiIndex.copy`, and `names` in Index.copy
This PR drops `kind` parameter from `Index.get_slice_bound` to match pandas-2.0 API.
- [x] This PR removes the deprecation of `numeric_only=None` and defaults to `numeric_only=False`. - [x] Removes `level` parameter from reduction APIs to match pandas-2.0 - [x] Change `axis` defaults to match pandas-2.0 APIs.
This PR removes `DataFrame.append` & `Series.append` to match pandas-2.0 API. Test usages are now replaced with `.concat` API calls.
…o pandas_2.0_feature_branch
This PR adds additional information for the following Index APIs to match with pandas 2.0: is_numeric is_boolean is_integer is_floating is_object is_categorical is_interval
…ai/cudf into pandas_2.0_feature_branch
/okay to test |
vyasr
approved these changes
Jan 30, 2024
Adding don't merge because we don't want to auto-merge this pr using the bot |
AyodeAwe
approved these changes
Jan 30, 2024
galipremsagar
added
5 - Ready to Merge
Testing and reviews complete, ready to merge
and removed
3 - Ready for Review
Ready for review by team
labels
Jan 30, 2024
rapids-bot bot
pushed a commit
that referenced
this pull request
Feb 1, 2024
A few cleanups in test files following #14916. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) - Charles Blackmon-Luca (https://github.com/charlesbluca) URL: #14941
This was referenced Feb 7, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
5 - DO NOT MERGE
Hold off on merging; see PR for details
5 - Ready to Merge
Testing and reviews complete, ready to merge
breaking
Breaking change
improvement
Improvement / enhancement to an existing function
Python
Affects Python cuDF API.
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.
Description
closes: #12794
This PR introduces
pandas-2.x
support incudf
. Minimum requirement of pandas is also bumped to2.0
.Checklist