pandas.Series.pipe¶
Apply func(self, \*args, \*\*kwargs).
- param func
- function
function to apply to the Series/DataFrame.
args
, andkwargs
are passed intofunc
. Alternatively a(callable, data_keyword)
tuple wheredata_keyword
is a string indicating the keyword ofcallable
that expects the Series/DataFrame.
- param args
- iterable, optional
positional arguments passed into
func
.
- param kwargs
- mapping, optional
a dictionary of keyword arguments passed into
func
.
- return
object : the return type of
func
.
Warning
This feature is currently unsupported by Intel Scalable Dataframe Compiler