From 743344c05f9f5a8249fb534010923328ea60d095 Mon Sep 17 00:00:00 2001 From: Luke Manley Date: Tue, 2 Jul 2024 17:16:29 -0400 Subject: [PATCH] DOC: Series reduction return value descriptions --- pandas/core/series.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandas/core/series.py b/pandas/core/series.py index a22cc59b62499..184c774d04a47 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -6567,7 +6567,7 @@ def min( Returns ------- scalar or Series (if level specified) - The maximum of the values in the Series. + The minimum of the values in the Series. See Also -------- @@ -6716,7 +6716,7 @@ def sum( Returns ------- scalar or Series (if level specified) - Median of the values for the requested axis. + Sum of the values for the requested axis. See Also -------- @@ -6826,7 +6826,7 @@ def mean( Returns ------- scalar or Series (if level specified) - Median of the values for the requested axis. + Mean of the values for the requested axis. See Also --------