xarray.Dataset.isin

Dataset.isin(test_elements)

Tests each value in the array for whether it is in the supplied list.

Parameters:
test_elements : array_like

The values against which to test each value of element. This argument is flattened if an array or array_like. See numpy notes for behavior with non-array-like parameters.

Returns:
isin : same as object, bool

Has the same shape as this object.

See also

numpy.isin

Examples

>>> array = xr.DataArray([1, 2, 3], dims='x')
>>> array.isin([1, 3])
<xarray.DataArray (x: 3)>
array([ True, False,  True])
Dimensions without coordinates: x