From ca04af5071a1f8cfa392bb1045fa8d1e65c89bca Mon Sep 17 00:00:00 2001 From: Farhan Reynaldo Date: Sun, 15 Mar 2020 14:01:48 +0700 Subject: [PATCH] DOC: Fix PR01, PR07 in Index.min and Index.max --- pandas/core/base.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandas/core/base.py b/pandas/core/base.py index 40ff0640a5bc4..e9ad076830899 100644 --- a/pandas/core/base.py +++ b/pandas/core/base.py @@ -885,6 +885,9 @@ def max(self, axis=None, skipna=True, *args, **kwargs): axis : int, optional For compatibility with NumPy. Only 0 or None are allowed. skipna : bool, default True + Exclude NA/null values when showing the result. + *args, **kwargs + Additional arguments and keywords for compatibility with NumPy. Returns ------- @@ -982,6 +985,9 @@ def min(self, axis=None, skipna=True, *args, **kwargs): axis : {None} Dummy argument for consistency with Series. skipna : bool, default True + Exclude NA/null values when showing the result. + *args, **kwargs + Additional arguments and keywords for compatibility with NumPy. Returns -------