xarray.testing.assert_equal#
- xarray.testing.assert_equal(a, b, check_dim_order=True)[source]#
Like
numpy.testing.assert_array_equal()
, but for xarray objects.Raises an AssertionError if two objects are not equal. This will match data values, dimensions and coordinates, but not names or attributes (except for Dataset objects for which the variable names must match). Arrays with NaN in the same location are considered equal.
For DataTree objects, assert_equal is mapped over all Datasets on each node, with the DataTrees being equal if both are isomorphic and the corresponding Datasets at each node are themselves equal.
- Parameters:
a (
xarray.Dataset
,xarray.DataArray
,xarray.Variable
,xarray.Coordinates
) – or xarray.core.datatree.DataTree. The first object to compare.b (
xarray.Dataset
,xarray.DataArray
,xarray.Variable
,xarray.Coordinates
) – or xarray.core.datatree.DataTree. The second object to compare.check_dim_order (
bool
, optional, defaultis True
) – Whether dimensions must be in the same order.
See also
assert_identical
,assert_allclose
,Dataset.equals
,DataArray.equals
,numpy.testing.assert_array_equal