-
Notifications
You must be signed in to change notification settings - Fork 367
Implement Index.drop_duplicates #1121
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
Implement Index.drop_duplicates #1121
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1121 +/- ##
==========================================
+ Coverage 95.17% 95.17% +<.01%
==========================================
Files 35 35
Lines 7048 7051 +3
==========================================
+ Hits 6708 6711 +3
Misses 340 340
Continue to review full report at Codecov.
|
HyukjinKwon
left a comment
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.
| Index.is_interval | ||
| Index.is_numeric | ||
| Index.is_object | ||
| Index.drop_duplicates |
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, can you add drop_duplicates at MultiIndex too?
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.
MultiIndex.drop_duplicates has been deprecated in pandas 0.26 doc.https://dev.pandas.io/docs/reference/indexing.html
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.
Nice!
Softagram Impact Report for pull/1121 (head commit: e87f3a6)
|

Implement Index.drop_duplicates by using spark drop_duplicates API without keep parameter