Skip to content

Commit 165c903

Browse files
farhanreynaldoSeeminSyed
authored andcommitted
DOC: Fix PR01, PR07 in Index.min and Index.max (pandas-dev#32718)
1 parent 8262f0f commit 165c903

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/core/base.py

+6
Original file line numberDiff line numberDiff line change
@@ -885,6 +885,9 @@ def max(self, axis=None, skipna=True, *args, **kwargs):
885885
axis : int, optional
886886
For compatibility with NumPy. Only 0 or None are allowed.
887887
skipna : bool, default True
888+
Exclude NA/null values when showing the result.
889+
*args, **kwargs
890+
Additional arguments and keywords for compatibility with NumPy.
888891
889892
Returns
890893
-------
@@ -982,6 +985,9 @@ def min(self, axis=None, skipna=True, *args, **kwargs):
982985
axis : {None}
983986
Dummy argument for consistency with Series.
984987
skipna : bool, default True
988+
Exclude NA/null values when showing the result.
989+
*args, **kwargs
990+
Additional arguments and keywords for compatibility with NumPy.
985991
986992
Returns
987993
-------

0 commit comments

Comments
 (0)