Skip to content

Commit b8e4b8c

Browse files
ivanovwesm
authored andcommitted
DOC: skipna not an argument of drop_duplicates
From what I can tell, `skipna` keyword was both added and subsequently removed in #1244. However, the docstring for DataFrame.drop_duplicates still lists it as a parameter.
1 parent c28e028 commit b8e4b8c

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
@@ -2578,8 +2578,6 @@ def drop_duplicates(self, cols=None, take_last=False, inplace=False):
25782578
default use all of the columns
25792579
take_last : boolean, default False
25802580
Take the last observed row in a row. Defaults to the first row
2581-
skipna : boolean, default True
2582-
If True then keep NaN
25832581
inplace : boolean, default False
25842582
Whether to drop duplicates in place or to return a copy
25852583

0 commit comments

Comments
 (0)