-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: update the pandas.Index.drop_duplicates and pandas.Series.drop_duplicates docstring #20114
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
Changes from 14 commits
f7e098a
17e3846
dd9d3a4
13406a1
bcfceaf
2876b26
863b961
b41e1d1
6c8de22
9f8e438
0d604ac
d92c124
0453aea
c300ea6
8763f33
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1316,8 +1316,76 @@ def unique(self): | |
|
||
return result | ||
|
||
@Appender(base._shared_docs['drop_duplicates'] % _shared_doc_kwargs) | ||
def drop_duplicates(self, keep='first', inplace=False): | ||
""" | ||
Return Series with duplicate values removed. | ||
|
||
Parameters | ||
---------- | ||
keep : {'first', 'last', ``False``}, default 'first' | ||
- 'first' : Drop duplicates except for the first occurrence. | ||
- 'last' : Drop duplicates except for the last occurrence. | ||
- ``False`` : Drop all duplicates. | ||
inplace : boolean, default ``False`` | ||
If ``True``, performs operation inplace and returns None. | ||
|
||
Returns | ||
------- | ||
deduplicated : Series | ||
|
||
See Also | ||
-------- | ||
Index.drop_duplicates : equivalent method on Index | ||
DataFrame.drop_duplicates: equivalent method on DataFrame | ||
Series.duplicated: related method on Series | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can also DataFrame.drop_duplicates. and Series.duplicated There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you edit DataFrame.drop_duplicates if needed to ensure the back-link to here (unless other PR) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let's keep that for another PR. But good idea to also add DataFrame.drop_duplicates and Series.duplicated There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. adjusted in c300ea6 |
||
Examples | ||
-------- | ||
Generate an Series with duplicated entries. | ||
|
||
>>> s = pd.Series(['lama', 'cow', 'lama', 'beetle', 'lama', 'hippo'], | ||
... name='animal') | ||
>>> s | ||
0 lama | ||
1 cow | ||
2 lama | ||
3 beetle | ||
4 lama | ||
5 hippo | ||
Name: animal, dtype: object | ||
|
||
With the 'keep' parameter, the selection behaviour of duplicated values | ||
can be changed. The value 'first' keeps the first occurrence for each | ||
set of duplicated entries. The default value of keep is 'first'. | ||
|
||
>>> s.drop_duplicates() | ||
0 lama | ||
1 cow | ||
3 beetle | ||
5 hippo | ||
Name: animal, dtype: object | ||
|
||
The value 'last' for parameter 'keep' keeps the last occurrence for | ||
each set of duplicated entries. | ||
|
||
>>> s.drop_duplicates(keep='last') | ||
1 cow | ||
3 beetle | ||
4 lama | ||
5 hippo | ||
Name: animal, dtype: object | ||
|
||
The value ``False`` for parameter 'keep' discards all sets of | ||
duplicated entries. Setting the value of 'inplace' to ``True`` performs | ||
the operation inplace and returns ``None``. | ||
|
||
>>> s.drop_duplicates(keep=False, inplace=True) | ||
>>> s | ||
1 cow | ||
3 beetle | ||
5 hippo | ||
Name: animal, dtype: object | ||
""" | ||
return super(Series, self).drop_duplicates(keep=keep, inplace=inplace) | ||
|
||
@Appender(base._shared_docs['duplicated'] % _shared_doc_kwargs) | ||
|
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.
can you update see also here as well?
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.
adjusted in 8763f33