HyukjinKwon commented on code in PR #37328:
URL: https://github.com/apache/spark/pull/37328#discussion_r934060985
##########
python/pyspark/pandas/series.py:
##########
@@ -6322,13 +6321,20 @@ def argmax(self, axis: Axis = None, skipna: bool =
True) -> int:
# If the maximum is achieved in multiple locations, the first row
position is returned.
return -1 if max_value[0] is None else max_value[1]
- def argmin(self) -> int:
+ def argmin(self, axis: Axis = None, skipna: bool = True) -> int:
"""
Return int position of the smallest value in the Series.
If the minimum is achieved in multiple locations,
the first row position is returned.
+ Parameters
+ ----------
+ axis : {{None}}
Review Comment:
Seems like a mistake? `{{None}}`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]