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

Method equals

xarray/core/indexes.py:900–903  ·  view source on GitHub ↗
(self, other: Index, *, exclude: frozenset[Hashable] | None = None)

Source from the content-addressed store, hash-verified

898 return IndexSelResult({self.dim: indexer})
899
900 def equals(self, other: Index, *, exclude: frozenset[Hashable] | None = None):
901 if not isinstance(other, PandasIndex):
902 return False
903 return self.index.equals(other.index) and self.dim == other.dim
904
905 def join(
906 self,

Callers 1

test_equalsMethod · 0.95

Calls 1

equalsMethod · 0.45

Tested by 1

test_equalsMethod · 0.76