Skip to content

Commit b319d24

Browse files
committed
Merge pull request #5750 from mortada/series_apply
DOC: added missing argument in Series.apply
2 parents e5a49ff + 18b488d commit b319d24

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/core/series.py

+3
Original file line numberDiff line numberDiff line change
@@ -1993,6 +1993,9 @@ def apply(self, func, convert_dtype=True, args=(), **kwds):
19931993
convert_dtype : boolean, default True
19941994
Try to find better dtype for elementwise function results. If
19951995
False, leave as dtype=object
1996+
args : tuple
1997+
Positional arguments to pass to function in addition to the value
1998+
Additional keyword arguments will be passed as keywords to the function
19961999
19972000
See also
19982001
--------

0 commit comments

Comments
 (0)