Yikun commented on code in PR #36599:
URL: https://github.com/apache/spark/pull/36599#discussion_r877669800
##########
python/pyspark/pandas/series.py:
##########
@@ -6239,13 +6239,19 @@ def argsort(self) -> "Series":
ps.concat([psser, self.loc[self.isnull()].spark.transform(lambda
_: SF.lit(-1))]),
)
- def argmax(self) -> int:
+ def argmax(self, skipna: bool = True) -> int:
Review Comment:

It would be listed, if we don't add it.
```python
>>> from inspect import signature
>>> signature(pd.Series.argmax).parameters
mappingproxy(OrderedDict([('self', <Parameter "self">), ('axis', <Parameter
"axis=None">), ('skipna', <Parameter "skipna: 'bool' = True">), ('args',
<Parameter "*args">), ('kwargs', <Parameter "**kwargs">)]))
>>> signature(ps.Series.argmax).parameters
mappingproxy(OrderedDict([('self', <Parameter "self">), ('skipna',
<Parameter "skipna: bool = True">)]))
```
--
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]