From 2a964e0021fadcf339d4707e3014720fbe47fa2f Mon Sep 17 00:00:00 2001 From: Kamel Gazzaz <60620606+kamelCased@users.noreply.github.com> Date: Sun, 31 Mar 2024 15:23:54 -0700 Subject: [PATCH] Remove 'Not implemented for Series' from _num_doc in generic.py Documentation fix in `generic.py` line 11715: Removed 'Not implemented for Series' in _num_doc given that `numeric_only` is now implemented for Series in all the methods min, max, mean, median, skew, kurt --- pandas/core/generic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 858d2ba82a969..b5cdafeb57134 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -11712,7 +11712,7 @@ def last_valid_index(self) -> Hashable: skipna : bool, default True Exclude NA/null values when computing the result. numeric_only : bool, default False - Include only float, int, boolean columns. Not implemented for Series. + Include only float, int, boolean columns. {min_count}\ **kwargs