-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
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: Fix errors in pandas.Series.argmax #32019
Changes from 3 commits
9bffeac
9eda7cd
64e814f
32e3911
c46e2ff
8f7843d
e44f592
9d8f863
878dcc4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -929,11 +929,17 @@ def argmax(self, axis=None, skipna=True, *args, **kwargs): | |
""" | ||
Return an ndarray of the maximum argument indexer. | ||
|
||
If multiple values equal the maximum, the first row label with that | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If the maximum is achieved in multiple locations, the first such location is returned. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you think we should go with location instead of row position? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "row position" sounds good. Definitely not "row label". |
||
value is returned. | ||
|
||
Parameters | ||
---------- | ||
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 | ||
------- | ||
|
@@ -942,7 +948,27 @@ def argmax(self, axis=None, skipna=True, *args, **kwargs): | |
|
||
See Also | ||
-------- | ||
numpy.ndarray.argmax | ||
numpy.ndarray.argmax : Equivalent method for numpy arrays. | ||
Series.argmin : Similar method, but returning the minimum. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Series.idxmax, Series.idxmin might also make sense here |
||
|
||
Examples | ||
-------- | ||
Consider dataset containing cereal calories | ||
|
||
>>> s = pd.Series({'Corn Flakes': 100.0, 'Almond Delight': 110.0, | ||
... 'Cinnamon Toast Crunch': 120.0, 'Cocoa Puff': 110.0}) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @datapythonista do we care about getting an extra space before the quote here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this what you're looking for?
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i meant an extra space after the |
||
>>> s | ||
Corn Flakes 100.0 | ||
Almond Delight 110.0 | ||
Cinnamon Toast Crunch 120.0 | ||
Cocoa Puff 110.0 | ||
dtype: float64 | ||
|
||
>>> s.argmax() | ||
2 | ||
|
||
The maximum cereal calories is in the third element, | ||
since series is zero-indexed. | ||
""" | ||
nv.validate_minmax_axis(axis) | ||
nv.validate_argmax_with_skipna(skipna, args, kwargs) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this sentence accurate? it looks like we return an int, not ndarray
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(also relevant for the Returns section)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you think this okay?
And also change for the Returns section:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"maximum argument indexer" is awkward. how about "Returns int position of the largest value in the Series"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this one is easier to understand.