Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: Series reduction return value descriptions #59171

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
DOC: Series reduction return value descriptions
  • Loading branch information
lukemanley committed Jul 2, 2024
commit 743344c05f9f5a8249fb534010923328ea60d095
6 changes: 3 additions & 3 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------
Expand Down Expand Up @@ -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
--------
Expand Down Expand Up @@ -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
--------
Expand Down
Loading