xarray.DataArray.pipe¶
-
DataArray.pipe(func, *args, **kwargs)¶ Apply func(self, *args, **kwargs)
This method replicates the pandas method of the same name.
Parameters: func : function
function to apply to this xarray object (Dataset/DataArray).
args, andkwargsare passed intofunc. Alternatively a(callable, data_keyword)tuple wheredata_keywordis a string indicating the keyword ofcallablethat expects the xarray object.args : positional arguments passed into
func.kwargs : a dictionary of keyword arguments passed into
func.Returns: object : the return type of
func.See also
Notes
Use
.pipewhen chaining together functions that expect xarray or pandas objects, e.g., instead of writing>>> f(g(h(ds), arg1=a), arg2=b, arg3=c)
You can write
>>> (ds.pipe(h) ... .pipe(g, arg1=a) ... .pipe(f, arg2=b, arg3=c) ... )
If you have a function that takes the data as (say) the second argument, pass a tuple indicating which keyword expects the data. For example, suppose
ftakes its data asarg2:>>> (ds.pipe(h) ... .pipe(g, arg1=a) ... .pipe((f, 'arg2'), arg1=a, arg3=c) ... )