Skip to content

Commit

Permalink
clarified the documentation for DF.drop_duplicates (pandas-dev#25056)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjmdavis authored and Pingviinituutti committed Feb 28, 2019
1 parent 5dea121 commit 1ff4851
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -4625,7 +4625,8 @@ def dropna(self, axis=0, how='any', thresh=None, subset=None,
def drop_duplicates(self, subset=None, keep='first', inplace=False):
"""
Return DataFrame with duplicate rows removed, optionally only
considering certain columns.
considering certain columns. Indexes, including time indexes
are ignored.
Parameters
----------
Expand Down

0 comments on commit 1ff4851

Please sign in to comment.