Skip to content

Commit 294b116

Browse files
DOC: Idxmin/max fixed
Those functions cause issues during the testing. This has most likely been covered by some PR merged already.
1 parent 7095b99 commit 294b116

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pandas/core/series.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -2076,12 +2076,12 @@ def idxmin(self, axis=0, skipna=True, *args, **kwargs):
20762076
20772077
Parameters
20782078
----------
2079-
skipna : bool, default True
2080-
Exclude NA/null values. If the entire Series is NA, the result
2081-
will be NA.
20822079
axis : int, default 0
20832080
For compatibility with DataFrame.idxmin. Redundant for application
20842081
on Series.
2082+
skipna : bool, default True
2083+
Exclude NA/null values. If the entire Series is NA, the result
2084+
will be NA.
20852085
*args, **kwargs
20862086
Additional keywords have no effect but might be accepted
20872087
for compatibility with NumPy.
@@ -2146,12 +2146,12 @@ def idxmax(self, axis=0, skipna=True, *args, **kwargs):
21462146
21472147
Parameters
21482148
----------
2149-
skipna : bool, default True
2150-
Exclude NA/null values. If the entire Series is NA, the result
2151-
will be NA.
21522149
axis : int, default 0
21532150
For compatibility with DataFrame.idxmax. Redundant for application
21542151
on Series.
2152+
skipna : bool, default True
2153+
Exclude NA/null values. If the entire Series is NA, the result
2154+
will be NA.
21552155
*args, **kwargs
21562156
Additional keywords have no effect but might be accepted
21572157
for compatibility with NumPy.

0 commit comments

Comments
 (0)