diff --git a/pandas/core/series.py b/pandas/core/series.py index ecfd99e61a090..c41cdc89b7bb1 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -1993,6 +1993,9 @@ def apply(self, func, convert_dtype=True, args=(), **kwds): convert_dtype : boolean, default True Try to find better dtype for elementwise function results. If False, leave as dtype=object + args : tuple + Positional arguments to pass to function in addition to the value + Additional keyword arguments will be passed as keywords to the function See also --------