Skip to content

Commit 1851eec

Browse files
committed
DOC: skipna not an argument of drop_duplicates
From what I can tell, `skipna` keyword was both added and subsequently removed in pandas-dev#1244. However, the docstring for DataFrame.drop_duplicates still lists it as a parameter.
1 parent eec8a83 commit 1851eec

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/core/frame.py

-2
Original file line numberDiff line numberDiff line change
@@ -2532,8 +2532,6 @@ def drop_duplicates(self, cols=None, take_last=False, inplace=False):
25322532
default use all of the columns
25332533
take_last : boolean, default False
25342534
Take the last observed row in a row. Defaults to the first row
2535-
skipna : boolean, default True
2536-
If True then keep NaN
25372535
inplace : boolean, default False
25382536
Whether to drop duplicates in place or to return a copy
25392537

0 commit comments

Comments
 (0)