xarray.DataArray.diff#
- DataArray.diff(dim, n=1, label='upper')[source]#
Calculate the n-th order discrete difference along given axis.
- Parameters:
dim (
Hashable
) – Dimension over which to calculate the finite difference.n (
int
, default:1
) – The number of times values are differenced.label (
{"upper", "lower"}
, default:"upper"
) – The new coordinate in dimensiondim
will have the values of either the minuend’s or subtrahend’s coordinate for values ‘upper’ and ‘lower’, respectively.
- Returns:
difference (
DataArray
) – The n-th order finite difference of this object.
Notes
n matches numpy’s behavior and is different from pandas’ first argument named periods.
Examples
>>> arr = xr.DataArray([5, 5, 6, 6], [[1, 2, 3, 4]], ["x"]) >>> arr.diff("x") <xarray.DataArray (x: 3)> array([0, 1, 0]) Coordinates: * x (x) int64 2 3 4 >>> arr.diff("x", 2) <xarray.DataArray (x: 2)> array([ 1, -1]) Coordinates: * x (x) int64 3 4
See also