Computation

The labels associated with DataArray and Dataset objects enables some powerful shortcuts for computation, notably including aggregation and broadcasting by dimension names.

Basic array math

Arithmetic operations with a single DataArray automatically vectorize (like numpy) over all array values:

In [1]: arr = xr.DataArray(np.random.RandomState(0).randn(2, 3),
   ...:                    [('x', ['a', 'b']), ('y', [10, 20, 30])])
   ...: 

In [2]: arr - 3
Out[2]: 
<xarray.DataArray (x: 2, y: 3)>
array([[-1.235948, -2.599843, -2.021262],
       [-0.759107, -1.132442, -3.977278]])
Coordinates:
  * x        (x) <U1 'a' 'b'
  * y        (y) int64 10 20 30

In [3]: abs(arr)
Out[3]: 
<xarray.DataArray (x: 2, y: 3)>
array([[1.764052, 0.400157, 0.978738],
       [2.240893, 1.867558, 0.977278]])
Coordinates:
  * x        (x) <U1 'a' 'b'
  * y        (y) int64 10 20 30

You can also use any of numpy’s or scipy’s many ufunc functions directly on a DataArray:

In [4]: np.sin(arr)
Out[4]: 
<xarray.DataArray (x: 2, y: 3)>
array([[ 0.981384,  0.389563,  0.829794],
       [ 0.783762,  0.956288, -0.828978]])
Coordinates:
  * x        (x) <U1 'a' 'b'
  * y        (y) int64 10 20 30

Use where() to conditionally switch between values:

In [5]: xr.where(arr > 0, 'positive', 'negative')
Out[5]: 
<xarray.DataArray (x: 2, y: 3)>
array([['positive', 'positive', 'positive'],
       ['positive', 'positive', 'negative']], dtype='<U8')
Coordinates:
  * x        (x) <U1 'a' 'b'
  * y        (y) int64 10 20 30

Data arrays also implement many numpy.ndarray methods:

In [6]: arr.round(2)
Out[6]: 
<xarray.DataArray (x: 2, y: 3)>
array([[ 1.76,  0.4 ,  0.98],
       [ 2.24,  1.87, -0.98]])
Coordinates:
  * x        (x) <U1 'a' 'b'
  * y        (y) int64 10 20 30

In [7]: arr.T
Out[7]: 
<xarray.DataArray (y: 3, x: 2)>
array([[ 1.764052,  2.240893],
       [ 0.400157,  1.867558],
       [ 0.978738, -0.977278]])
Coordinates:
  * x        (x) <U1 'a' 'b'
  * y        (y) int64 10 20 30

Missing values

xarray objects borrow the isnull(), notnull(), count(), dropna(), fillna(), ffill(), and bfill() methods for working with missing data from pandas:

In [8]: x = xr.DataArray([0, 1, np.nan, np.nan, 2], dims=['x'])

In [9]: x.isnull()
Out[9]: 
<xarray.DataArray (x: 5)>
array([False, False,  True,  True, False])
Dimensions without coordinates: x

In [10]: x.notnull()
Out[10]: 
<xarray.DataArray (x: 5)>
array([ True,  True, False, False,  True])
Dimensions without coordinates: x

In [11]: x.count()
Out[11]: 
<xarray.DataArray ()>
array(3)

In [12]: x.dropna(dim='x')
Out[12]: 
<xarray.DataArray (x: 3)>
array([0., 1., 2.])
Dimensions without coordinates: x

In [13]: x.fillna(-1)
Out[13]: 
<xarray.DataArray (x: 5)>
array([ 0.,  1., -1., -1.,  2.])
Dimensions without coordinates: x

In [14]: x.ffill('x')
Out[14]: 
<xarray.DataArray (x: 5)>
array([0., 1., 1., 1., 2.])
Dimensions without coordinates: x

In [15]: x.bfill('x')
Out[15]: 
<xarray.DataArray (x: 5)>
array([0., 1., 2., 2., 2.])
Dimensions without coordinates: x

Like pandas, xarray uses the float value np.nan (not-a-number) to represent missing values.

xarray objects also have an interpolate_na() method for filling missing values via 1D interpolation.

In [16]: x = xr.DataArray([0, 1, np.nan, np.nan, 2], dims=['x'],
   ....:                  coords={'xx': xr.Variable('x', [0, 1, 1.1, 1.9, 3])})
   ....: 

In [17]: x.interpolate_na(dim='x', method='linear', use_coordinate='xx')
Out[17]: 
<xarray.DataArray (x: 5)>
array([0.  , 1.  , 1.05, 1.45, 2.  ])
Coordinates:
    xx       (x) float64 0.0 1.0 1.1 1.9 3.0
Dimensions without coordinates: x

Note that xarray slightly diverges from the pandas interpolate syntax by providing the use_coordinate keyword which facilitates a clear specification of which values to use as the index in the interpolation.

Aggregation

Aggregation methods have been updated to take a dim argument instead of axis. This allows for very intuitive syntax for aggregation methods that are applied along particular dimension(s):

In [18]: arr.sum(dim='x')
Out[18]: 
<xarray.DataArray (y: 3)>
array([4.004946e+00, 2.267715e+00, 1.460104e-03])
Coordinates:
  * y        (y) int64 10 20 30

In [19]: arr.std(['x', 'y'])
Out[19]: 
<xarray.DataArray ()>
array(1.090383)

In [20]: arr.min()
Out[20]: 
<xarray.DataArray ()>
array(-0.977278)

If you need to figure out the axis number for a dimension yourself (say, for wrapping code designed to work with numpy arrays), you can use the get_axis_num() method:

In [21]: arr.get_axis_num('y')
Out[21]: 1

These operations automatically skip missing values, like in pandas:

In [22]: xr.DataArray([1, 2, np.nan, 3]).mean()
Out[22]: 
<xarray.DataArray ()>
array(2.)

If desired, you can disable this behavior by invoking the aggregation method with skipna=False.

Rolling window operations

DataArray objects include a rolling() method. This method supports rolling window aggregation:

In [23]: arr = xr.DataArray(np.arange(0, 7.5, 0.5).reshape(3, 5),
   ....:                    dims=('x', 'y'))
   ....: 

In [24]: arr
Out[24]: 
<xarray.DataArray (x: 3, y: 5)>
array([[0. , 0.5, 1. , 1.5, 2. ],
       [2.5, 3. , 3.5, 4. , 4.5],
       [5. , 5.5, 6. , 6.5, 7. ]])
Dimensions without coordinates: x, y

rolling() is applied along one dimension using the name of the dimension as a key (e.g. y) and the window size as the value (e.g. 3). We get back a Rolling object:

In [25]: arr.rolling(y=3)
Out[25]: DataArrayRolling [window->3,center->False,dim->y]

The label position and minimum number of periods in the rolling window are controlled by the center and min_periods arguments:

In [26]: arr.rolling(y=3, min_periods=2, center=True)
Out[26]: DataArrayRolling [window->3,min_periods->2,center->True,dim->y]

Aggregation and summary methods can be applied directly to the Rolling object:

In [27]: r = arr.rolling(y=3)

In [28]: r.mean()
Out[28]: 
<xarray.DataArray (x: 3, y: 5)>
array([[nan, nan, 0.5, 1. , 1.5],
       [nan, nan, 3. , 3.5, 4. ],
       [nan, nan, 5.5, 6. , 6.5]])
Dimensions without coordinates: x, y

In [29]: r.reduce(np.std)
Out[29]: 
<xarray.DataArray (x: 3, y: 5)>
array([[     nan,      nan, 0.408248, 0.408248, 0.408248],
       [     nan,      nan, 0.408248, 0.408248, 0.408248],
       [     nan,      nan, 0.408248, 0.408248, 0.408248]])
Dimensions without coordinates: x, y

Note that rolling window aggregations are faster when bottleneck is installed.

We can also manually iterate through Rolling objects:

for label, arr_window in r:
   # arr_window is a view of x

Finally, the rolling object has a construct method which returns a view of the original DataArray with the windowed dimension in the last position. You can use this for more advanced rolling operations such as strided rolling, windowed rolling, convolution, short-time FFT etc.

# rolling with 2-point stride
In [30]: rolling_da = r.construct('window_dim', stride=2)

In [31]: rolling_da
Out[31]: 
<xarray.DataArray (x: 3, y: 3, window_dim: 3)>
array([[[nan, nan, 0. ],
        [0. , 0.5, 1. ],
        [1. , 1.5, 2. ]],

       [[nan, nan, 2.5],
        [2.5, 3. , 3.5],
        [3.5, 4. , 4.5]],

       [[nan, nan, 5. ],
        [5. , 5.5, 6. ],
        [6. , 6.5, 7. ]]])
Dimensions without coordinates: x, y, window_dim

In [32]: rolling_da.mean('window_dim', skipna=False)
Out[32]: 
<xarray.DataArray (x: 3, y: 3)>
array([[nan, 0.5, 1.5],
       [nan, 3. , 4. ],
       [nan, 5.5, 6.5]])
Dimensions without coordinates: x, y

Because the DataArray given by r.construct('window_dim') is a view of the original array, it is memory efficient. You can also use construct to compute a weighted rolling sum:

In [33]: weight = xr.DataArray([0.25, 0.5, 0.25], dims=['window'])

In [34]: arr.rolling(y=3).construct('window').dot(weight)
Out[34]: 
<xarray.DataArray (x: 3, y: 5)>
array([[nan, nan, 0.5, 1. , 1.5],
       [nan, nan, 3. , 3.5, 4. ],
       [nan, nan, 5.5, 6. , 6.5]])
Dimensions without coordinates: x, y

Note

numpy’s Nan-aggregation functions such as nansum copy the original array. In xarray, we internally use these functions in our aggregation methods (such as .sum()) if skipna argument is not specified or set to True. This means rolling_da.mean('window_dim') is memory inefficient. To avoid this, use skipna=False as the above example.

Coarsen large arrays

DataArray and Dataset objects include a coarsen() and coarsen() methods. This supports the block aggregation along multiple dimensions,

In [35]: x = np.linspace(0, 10, 300)

In [36]: t = pd.date_range('15/12/1999', periods=364)

In [37]: da = xr.DataArray(np.sin(x) * np.cos(np.linspace(0, 1, 364)[:, np.newaxis]),
   ....:                   dims=['time', 'x'], coords={'time': t, 'x': x})
   ....: 

In [38]: da
Out[38]: 
<xarray.DataArray (time: 364, x: 300)>
array([[ 0.      ,  0.033439,  0.06684 , ..., -0.486721, -0.51566 , -0.544021],
       [ 0.      ,  0.033438,  0.06684 , ..., -0.486719, -0.515658, -0.544019],
       [ 0.      ,  0.033438,  0.066839, ..., -0.486714, -0.515652, -0.544013],
       ...,
       [ 0.      ,  0.018222,  0.036423, ..., -0.265229, -0.280998, -0.296454],
       [ 0.      ,  0.018144,  0.036268, ..., -0.264104, -0.279806, -0.295196],
       [ 0.      ,  0.018067,  0.036114, ..., -0.262977, -0.278612, -0.293936]])
Coordinates:
  * time     (time) datetime64[ns] 1999-12-15 1999-12-16 ... 2000-12-12
  * x        (x) float64 0.0 0.03344 0.06689 0.1003 ... 9.9 9.933 9.967 10.0

In order to take a block mean for every 7 days along time dimension and every 2 points along x dimension,

In [39]: da.coarsen(time=7, x=2).mean()
Out[39]: 
<xarray.DataArray (time: 52, x: 150)>
array([[ 0.016718,  0.083499,  0.149906, ..., -0.411988, -0.471957, -0.529814],
       [ 0.016713,  0.08347 ,  0.149854, ..., -0.411846, -0.471794, -0.529631],
       [ 0.016701,  0.08341 ,  0.149747, ..., -0.41155 , -0.471455, -0.529251],
       ...,
       [ 0.009682,  0.048356,  0.086814, ..., -0.238592, -0.273321, -0.306828],
       [ 0.009417,  0.047034,  0.084441, ..., -0.232071, -0.265851, -0.298441],
       [ 0.009149,  0.045695,  0.082037, ..., -0.225463, -0.258281, -0.289944]])
Coordinates:
  * time     (time) datetime64[ns] 1999-12-18 1999-12-25 ... 2000-12-09
  * x        (x) float64 0.01672 0.08361 0.1505 0.2174 ... 9.849 9.916 9.983

coarsen() raises an ValueError if the data length is not a multiple of the corresponding window size. You can choose boundary='trim' or boundary='pad' options for trimming the excess entries or padding nan to insufficient entries,

In [40]: da.coarsen(time=30, x=2, boundary='trim').mean()
Out[40]: 
<xarray.DataArray (time: 12, x: 150)>
array([[ 0.016701,  0.083413,  0.149751, ..., -0.411563, -0.471469, -0.529267],
       [ 0.016589,  0.082853,  0.148746, ..., -0.4088  , -0.468305, -0.525715],
       [ 0.016364,  0.081727,  0.146725, ..., -0.403247, -0.461943, -0.518573],
       ...,
       [ 0.011838,  0.059126,  0.106149, ..., -0.291732, -0.334196, -0.375165],
       [ 0.010824,  0.05406 ,  0.097053, ..., -0.266733, -0.305558, -0.343017],
       [ 0.009736,  0.048624,  0.087295, ..., -0.239913, -0.274835, -0.308527]])
Coordinates:
  * time     (time) datetime64[ns] 1999-12-29T12:00:00 ... 2000-11-23T12:00:00
  * x        (x) float64 0.01672 0.08361 0.1505 0.2174 ... 9.849 9.916 9.983

If you want to apply a specific function to coordinate, you can pass the function or method name to coord_func option,

In [41]: da.coarsen(time=7, x=2, coord_func={'time': 'min'}).mean()
Out[41]: 
<xarray.DataArray (time: 52, x: 150)>
array([[ 0.016718,  0.083499,  0.149906, ..., -0.411988, -0.471957, -0.529814],
       [ 0.016713,  0.08347 ,  0.149854, ..., -0.411846, -0.471794, -0.529631],
       [ 0.016701,  0.08341 ,  0.149747, ..., -0.41155 , -0.471455, -0.529251],
       ...,
       [ 0.009682,  0.048356,  0.086814, ..., -0.238592, -0.273321, -0.306828],
       [ 0.009417,  0.047034,  0.084441, ..., -0.232071, -0.265851, -0.298441],
       [ 0.009149,  0.045695,  0.082037, ..., -0.225463, -0.258281, -0.289944]])
Coordinates:
  * time     (time) datetime64[ns] 1999-12-15 1999-12-22 ... 2000-12-06
  * x        (x) float64 0.01672 0.08361 0.1505 0.2174 ... 9.849 9.916 9.983

Computation using Coordinates

Xarray objects have some handy methods for the computation with their coordinates. differentiate() computes derivatives by central finite differences using their coordinates,

In [42]: a = xr.DataArray([0, 1, 2, 3], dims=['x'], coords=[[0.1, 0.11, 0.2, 0.3]])

In [43]: a
Out[43]: 
<xarray.DataArray (x: 4)>
array([0, 1, 2, 3])
Coordinates:
  * x        (x) float64 0.1 0.11 0.2 0.3

In [44]: a.differentiate('x')
Out[44]: 
<xarray.DataArray (x: 4)>
array([100.      ,  91.111111,  10.584795,  10.      ])
Coordinates:
  * x        (x) float64 0.1 0.11 0.2 0.3

This method can be used also for multidimensional arrays,

In [45]: a = xr.DataArray(np.arange(8).reshape(4, 2), dims=['x', 'y'],
   ....:                  coords={'x': [0.1, 0.11, 0.2, 0.3]})
   ....: 

In [46]: a.differentiate('x')
Out[46]: 
<xarray.DataArray (x: 4, y: 2)>
array([[200.      , 200.      ],
       [182.222222, 182.222222],
       [ 21.169591,  21.169591],
       [ 20.      ,  20.      ]])
Coordinates:
  * x        (x) float64 0.1 0.11 0.2 0.3
Dimensions without coordinates: y

integrate() computes integration based on trapezoidal rule using their coordinates,

In [47]: a.integrate('x')
Out[47]: 
<xarray.DataArray (y: 2)>
array([0.78, 0.98])
Dimensions without coordinates: y

Note

These methods are limited to simple cartesian geometry. Differentiation and integration along multidimensional coordinate are not supported.

Broadcasting by dimension name

DataArray objects are automatically align themselves (“broadcasting” in the numpy parlance) by dimension name instead of axis order. With xarray, you do not need to transpose arrays or insert dimensions of length 1 to get array operations to work, as commonly done in numpy with np.reshape() or np.newaxis.

This is best illustrated by a few examples. Consider two one-dimensional arrays with different sizes aligned along different dimensions:

In [48]: a = xr.DataArray([1, 2], [('x', ['a', 'b'])])

In [49]: a
Out[49]: 
<xarray.DataArray (x: 2)>
array([1, 2])
Coordinates:
  * x        (x) <U1 'a' 'b'

In [50]: b = xr.DataArray([-1, -2, -3], [('y', [10, 20, 30])])

In [51]: b
Out[51]: 
<xarray.DataArray (y: 3)>
array([-1, -2, -3])
Coordinates:
  * y        (y) int64 10 20 30

With xarray, we can apply binary mathematical operations to these arrays, and their dimensions are expanded automatically:

In [52]: a * b
Out[52]: 
<xarray.DataArray (x: 2, y: 3)>
array([[-1, -2, -3],
       [-2, -4, -6]])
Coordinates:
  * x        (x) <U1 'a' 'b'
  * y        (y) int64 10 20 30

Moreover, dimensions are always reordered to the order in which they first appeared:

In [53]: c = xr.DataArray(np.arange(6).reshape(3, 2), [b['y'], a['x']])

In [54]: c
Out[54]: 
<xarray.DataArray (y: 3, x: 2)>
array([[0, 1],
       [2, 3],
       [4, 5]])
Coordinates:
  * y        (y) int64 10 20 30
  * x        (x) <U1 'a' 'b'

In [55]: a + c
Out[55]: 
<xarray.DataArray (x: 2, y: 3)>
array([[1, 3, 5],
       [3, 5, 7]])
Coordinates:
  * x        (x) <U1 'a' 'b'
  * y        (y) int64 10 20 30

This means, for example, that you always subtract an array from its transpose:

In [56]: c - c.T
Out[56]: 
<xarray.DataArray (y: 3, x: 2)>
array([[0, 0],
       [0, 0],
       [0, 0]])
Coordinates:
  * y        (y) int64 10 20 30
  * x        (x) <U1 'a' 'b'

You can explicitly broadcast xarray data structures by using the broadcast() function:

In [57]: a2, b2 = xr.broadcast(a, b)

In [58]: a2
Out[58]: 
<xarray.DataArray (x: 2, y: 3)>
array([[1, 1, 1],
       [2, 2, 2]])
Coordinates:
  * x        (x) <U1 'a' 'b'
  * y        (y) int64 10 20 30

In [59]: b2
Out[59]: 
<xarray.DataArray (x: 2, y: 3)>
array([[-1, -2, -3],
       [-1, -2, -3]])
Coordinates:
  * y        (y) int64 10 20 30
  * x        (x) <U1 'a' 'b'

Automatic alignment

xarray enforces alignment between index Coordinates (that is, coordinates with the same name as a dimension, marked by *) on objects used in binary operations.

Similarly to pandas, this alignment is automatic for arithmetic on binary operations. The default result of a binary operation is by the intersection (not the union) of coordinate labels:

In [60]: arr = xr.DataArray(np.arange(3), [('x', range(3))])

In [61]: arr + arr[:-1]
Out[61]: 
<xarray.DataArray (x: 2)>
array([0, 2])
Coordinates:
  * x        (x) int64 0 1

If coordinate values for a dimension are missing on either argument, all matching dimensions must have the same size:

In [62]: arr + xr.DataArray([1, 2], dims='x')
ValueError: arguments without labels along dimension 'x' cannot be aligned because they have different dimension size(s) {2} than the size of the aligned dimension labels: 3

However, one can explicitly change this default automatic alignment type (“inner”) via set_options() in context manager:

In [63]: with xr.set_options(arithmetic_join="outer"):
   ....:     arr + arr[:1]
   ....: 

In [64]: arr + arr[:1]
Out[64]: 
<xarray.DataArray (x: 1)>
array([0])
Coordinates:
  * x        (x) int64 0

Before loops or performance critical code, it’s a good idea to align arrays explicitly (e.g., by putting them in the same Dataset or using align()) to avoid the overhead of repeated alignment with each operation. See Align and reindex for more details.

Note

There is no automatic alignment between arguments when performing in-place arithmetic operations such as +=. You will need to use manual alignment. This ensures in-place arithmetic never needs to modify data types.

Coordinates

Although index coordinates are aligned, other coordinates are not, and if their values conflict, they will be dropped. This is necessary, for example, because indexing turns 1D coordinates into scalar coordinates:

In [65]: arr[0]
Out[65]: 
<xarray.DataArray ()>
array(0)
Coordinates:
    x        int64 0

In [66]: arr[1]
Out[66]: 
<xarray.DataArray ()>
array(1)
Coordinates:
    x        int64 1

# notice that the scalar coordinate 'x' is silently dropped
In [67]: arr[1] - arr[0]
Out[67]: 
<xarray.DataArray ()>
array(1)

Still, xarray will persist other coordinates in arithmetic, as long as there are no conflicting values:

# only one argument has the 'x' coordinate
In [68]: arr[0] + 1
Out[68]: 
<xarray.DataArray ()>
array(1)
Coordinates:
    x        int64 0

# both arguments have the same 'x' coordinate
In [69]: arr[0] - arr[0]
Out[69]: 
<xarray.DataArray ()>
array(0)
Coordinates:
    x        int64 0

Math with datasets

Datasets support arithmetic operations by automatically looping over all data variables:

In [70]: ds = xr.Dataset({'x_and_y': (('x', 'y'), np.random.randn(3, 5)),
   ....:                  'x_only': ('x', np.random.randn(3))},
   ....:                  coords=arr.coords)
   ....: 

In [71]: ds > 0
Out[71]: 
<xarray.Dataset>
Dimensions:  (x: 3, y: 5)
Coordinates:
  * x        (x) int64 0 1 2
Dimensions without coordinates: y
Data variables:
    x_and_y  (x, y) bool True False False False True ... True True False False
    x_only   (x) bool True False True

Datasets support most of the same methods found on data arrays:

In [72]: ds.mean(dim='x')
Out[72]: 
<xarray.Dataset>
Dimensions:  (y: 5)
Dimensions without coordinates: y
Data variables:
    x_and_y  (y) float64 -0.06634 0.3027 -0.6106 -0.9014 -0.644
    x_only   float64 0.138

In [73]: abs(ds)
Out[73]: 
<xarray.Dataset>
Dimensions:  (x: 3)
Coordinates:
  * x        (x) int64 0 1 2
Data variables:
    x_and_y  (x, y) float64 0.4691 0.2829 1.509 1.136 ... 0.7216 0.7068 1.04
    x_only   (x) float64 0.2719 0.425 0.567

Datasets also support NumPy ufuncs (requires NumPy v1.13 or newer), or alternatively you can use apply() to apply a function to each variable in a dataset:

In [74]: np.sin(ds)
Out[74]: 
<xarray.Dataset>
Dimensions:  (x: 3, y: 5)
Coordinates:
  * x        (x) int64 0 1 2
Dimensions without coordinates: y
Data variables:
    x_and_y  (x, y) float64 0.4521 -0.2791 -0.9981 ... 0.6606 -0.6494 -0.8622
    x_only   (x) float64 0.2685 -0.4123 0.5371

In [75]: ds.apply(np.sin)
Out[75]: 
<xarray.Dataset>
Dimensions:  (x: 3, y: 5)
Coordinates:
  * x        (x) int64 0 1 2
Dimensions without coordinates: y
Data variables:
    x_and_y  (x, y) float64 0.4521 -0.2791 -0.9981 ... 0.6606 -0.6494 -0.8622
    x_only   (x) float64 0.2685 -0.4123 0.5371

Datasets also use looping over variables for broadcasting in binary arithmetic. You can do arithmetic between any DataArray and a dataset:

In [76]: ds + arr
Out[76]: 
<xarray.Dataset>
Dimensions:  (x: 3, y: 5)
Coordinates:
  * x        (x) int64 0 1 2
Dimensions without coordinates: y
Data variables:
    x_and_y  (x, y) float64 0.4691 -0.2829 -1.509 -1.136 ... 2.722 1.293 0.9604
    x_only   (x) float64 0.2719 0.575 2.567

Arithmetic between two datasets matches data variables of the same name:

In [77]: ds2 = xr.Dataset({'x_and_y': 0, 'x_only': 100})

In [78]: ds - ds2
Out[78]: 
<xarray.Dataset>
Dimensions:  (x: 3, y: 5)
Coordinates:
  * x        (x) int64 0 1 2
Dimensions without coordinates: y
Data variables:
    x_and_y  (x, y) float64 0.4691 -0.2829 -1.509 ... 0.7216 -0.7068 -1.04
    x_only   (x) float64 -99.73 -100.4 -99.43

Similarly to index based alignment, the result has the intersection of all matching data variables.

Wrapping custom computation

It doesn’t always make sense to do computation directly with xarray objects:

  • In the inner loop of performance limited code, using xarray can add considerable overhead compared to using NumPy or native Python types. This is particularly true when working with scalars or small arrays (less than ~1e6 elements). Keeping track of labels and ensuring their consistency adds overhead, and xarray’s core itself is not especially fast, because it’s written in Python rather than a compiled language like C. Also, xarray’s high level label-based APIs removes low-level control over how operations are implemented.
  • Even if speed doesn’t matter, it can be important to wrap existing code, or to support alternative interfaces that don’t use xarray objects.

For these reasons, it is often well-advised to write low-level routines that work with NumPy arrays, and to wrap these routines to work with xarray objects. However, adding support for labels on both Dataset and DataArray can be a bit of a chore.

To make this easier, xarray supplies the apply_ufunc() helper function, designed for wrapping functions that support broadcasting and vectorization on unlabeled arrays in the style of a NumPy universal function (“ufunc” for short). apply_ufunc takes care of everything needed for an idiomatic xarray wrapper, including alignment, broadcasting, looping over Dataset variables (if needed), and merging of coordinates. In fact, many internal xarray functions/methods are written using apply_ufunc.

Simple functions that act independently on each value should work without any additional arguments:

In [79]: squared_error = lambda x, y: (x - y) ** 2

In [80]: arr1 = xr.DataArray([0, 1, 2, 3], dims='x')

In [81]: xr.apply_ufunc(squared_error, arr1, 1)
Out[81]: 
<xarray.DataArray (x: 4)>
array([1, 0, 1, 4])
Dimensions without coordinates: x

For using more complex operations that consider some array values collectively, it’s important to understand the idea of “core dimensions” from NumPy’s generalized ufuncs. Core dimensions are defined as dimensions that should not be broadcast over. Usually, they correspond to the fundamental dimensions over which an operation is defined, e.g., the summed axis in np.sum. A good clue that core dimensions are needed is the presence of an axis argument on the corresponding NumPy function.

With apply_ufunc, core dimensions are recognized by name, and then moved to the last dimension of any input arguments before applying the given function. This means that for functions that accept an axis argument, you usually need to set axis=-1. As an example, here is how we would wrap numpy.linalg.norm() to calculate the vector norm:

def vector_norm(x, dim, ord=None):
    return xr.apply_ufunc(np.linalg.norm, x,
                          input_core_dims=[[dim]],
                          kwargs={'ord': ord, 'axis': -1})
In [82]: vector_norm(arr1, dim='x')
Out[82]: 
<xarray.DataArray ()>
array(3.741657)

Because apply_ufunc follows a standard convention for ufuncs, it plays nicely with tools for building vectorized functions, like numpy.broadcast_arrays() and numpy.vectorize(). For high performance needs, consider using Numba’s vectorize and guvectorize.

In addition to wrapping functions, apply_ufunc can automatically parallelize many functions when using dask by setting dask='parallelized'. See Automatic parallelization for details.

apply_ufunc() also supports some advanced options for controlling alignment of variables and the form of the result. See the docstring for full details and more examples.