Skip to content

Commit 684faf7

Browse files
authored
DOC: Series reduction return value descriptions (pandas-dev#59171)
1 parent faad5ab commit 684faf7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/core/series.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6567,7 +6567,7 @@ def min(
65676567
Returns
65686568
-------
65696569
scalar or Series (if level specified)
6570-
The maximum of the values in the Series.
6570+
The minimum of the values in the Series.
65716571
65726572
See Also
65736573
--------
@@ -6716,7 +6716,7 @@ def sum(
67166716
Returns
67176717
-------
67186718
scalar or Series (if level specified)
6719-
Median of the values for the requested axis.
6719+
Sum of the values for the requested axis.
67206720
67216721
See Also
67226722
--------
@@ -6826,7 +6826,7 @@ def mean(
68266826
Returns
68276827
-------
68286828
scalar or Series (if level specified)
6829-
Median of the values for the requested axis.
6829+
Mean of the values for the requested axis.
68306830
68316831
See Also
68326832
--------

0 commit comments

Comments
 (0)