Skip to content

Commit

Permalink
clarified the documentation for DF.drop_duplicates (#25056)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjmdavis authored and jreback committed Feb 1, 2019
1 parent a0623af commit 76f5d2d
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 76f5d2d

Please sign in to comment.