From 18b488da97974ae9e0dbef9d3f16b58b9f2b7f75 Mon Sep 17 00:00:00 2001 From: Mortada Mehyar Date: Thu, 19 Dec 2013 15:55:33 -0500 Subject: [PATCH] DOC: added missing argument in Series.apply --- pandas/core/series.py | 3 +++ 1 file changed, 3 insertions(+) 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 --------