MCPcopy Index your code
hub / github.com/pydata/xarray / no_conflicts

Method no_conflicts

xarray/core/variable.py:1917–1924  ·  view source on GitHub ↗

True if the intersection of two Variable's non-null data is equal; otherwise false. Variables can thus still be equal if there are locations where either, or both, contain NaN values.

(self, other, equiv=duck_array_ops.array_notnull_equiv)

Source from the content-addressed store, hash-verified

1915 return False
1916
1917 def no_conflicts(self, other, equiv=duck_array_ops.array_notnull_equiv):
1918 """True if the intersection of two Variable's non-null data is
1919 equal; otherwise false.
1920
1921 Variables can thus still be equal if there are locations where either,
1922 or both, contain NaN values.
1923 """
1924 return self.broadcast_equals(other, equiv=equiv)
1925
1926 def quantile(
1927 self,

Callers 3

test_no_conflictsMethod · 0.95
test_no_conflictsMethod · 0.95

Calls 1

broadcast_equalsMethod · 0.95

Tested by 3

test_no_conflictsMethod · 0.76
test_no_conflictsMethod · 0.76