-
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
Remove deprecated method DataFrame.hash_columns. #9943
Remove deprecated method DataFrame.hash_columns. #9943
Conversation
…frame-hash_columns
Codecov Report
@@ Coverage Diff @@
## branch-22.02 #9943 +/- ##
================================================
+ Coverage 10.37% 10.41% +0.03%
================================================
Files 119 119
Lines 20111 20499 +388
================================================
+ Hits 2086 2134 +48
- Misses 18025 18365 +340
Continue to review full report at Codecov.
|
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.
LGTM
This is a straightforward removal of code, so I'm going to merge with one approval. @gpucibot merge |
@gpucibot merge |
This PR removes the deprecated method
DataFrame.hash_columns
. Users can replace existing calls likedf.hash_columns(columns, method)
withdf[columns].hash_values(method)
. Resolves #9503, follows up on #9458.