用法:
DataFrame.pipe(func, *args, **kwargs)
应用
func(self, *args, **kwargs)
。- func:函数
应用于 Series/DataFrame/Index 的函数。
args
和kwargs
被传递到func
。或者(callable, data_keyword)
元组,其中data_keyword
是一个字符串,指示需要 Series/DataFrame/Index 的callable
的关键字。- args:可迭代的,可选的
传递给
func
的位置参数。- kwargs:映射,可选
传递给
func
的关键字参数字典。
- object:
func
的返回类型。
- object:
参数:
返回:
例子:
将需要 Series、DataFrames 或 GroupBy 对象的函数链接在一起时,请使用
.pipe
。而不是写>>> func(g(h(df), arg1=a), arg2=b, arg3=c)
你可以写
>>> (df.pipe(h) ... .pipe(g, arg1=a) ... .pipe(func, arg2=b, arg3=c) ... )
如果您有一个将数据作为(例如)第二个参数的函数,请传递一个元组,指示哪个关键字需要数据。例如,假设
f
将其数据作为arg2
:>>> (df.pipe(h) ... .pipe(g, arg1=a) ... .pipe((func, 'arg2'), arg1=a, arg3=c) ... )
相关用法
- Python cudf.DataFrame.pivot用法及代码示例
- Python cudf.DataFrame.prod用法及代码示例
- Python cudf.DataFrame.product用法及代码示例
- Python cudf.DataFrame.pow用法及代码示例
- Python cudf.DataFrame.mod用法及代码示例
- Python cudf.DataFrame.isin用法及代码示例
- Python cudf.DataFrame.rmul用法及代码示例
- Python cudf.DataFrame.apply用法及代码示例
- Python cudf.DataFrame.exp用法及代码示例
- Python cudf.DataFrame.drop用法及代码示例
- Python cudf.DataFrame.where用法及代码示例
- Python cudf.DataFrame.median用法及代码示例
- Python cudf.DataFrame.to_pandas用法及代码示例
- Python cudf.DataFrame.take用法及代码示例
- Python cudf.DataFrame.tail用法及代码示例
- Python cudf.DataFrame.rfloordiv用法及代码示例
- Python cudf.DataFrame.equals用法及代码示例
- Python cudf.DataFrame.head用法及代码示例
- Python cudf.DataFrame.count用法及代码示例
- Python cudf.DataFrame.isna用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.DataFrame.pipe。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。