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 -------