Skip to content

Commit 4e371c1

Browse files
LauraCollardJosiah Baker
authored and
Josiah Baker
committed
DOC: Fixed PR06 docstring errors in pandas.DataFrame (pandas-dev#28718)
1 parent c794bbf commit 4e371c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/frame.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7948,7 +7948,7 @@ def idxmin(self, axis=0, skipna=True):
79487948
----------
79497949
axis : {0 or 'index', 1 or 'columns'}, default 0
79507950
The axis to use. 0 or 'index' for row-wise, 1 or 'columns' for column-wise
7951-
skipna : boolean, default True
7951+
skipna : bool, default True
79527952
Exclude NA/null values. If an entire row/column is NA, the result
79537953
will be NA.
79547954
@@ -7985,7 +7985,7 @@ def idxmax(self, axis=0, skipna=True):
79857985
----------
79867986
axis : {0 or 'index', 1 or 'columns'}, default 0
79877987
The axis to use. 0 or 'index' for row-wise, 1 or 'columns' for column-wise
7988-
skipna : boolean, default True
7988+
skipna : bool, default True
79897989
Exclude NA/null values. If an entire row/column is NA, the result
79907990
will be NA.
79917991

0 commit comments

Comments
 (0)