modin.pandas.Index.equals¶
- Index.equals(other: Any) bool[source]¶
Determine if two Index objects are equal.
The things that are being compared are:
The elements inside the Index object.
The order of the elements inside the Index object.
- Parameters:
other (Any) – The other object to compare against.
- Returns:
True if “other” is an Index and it has the same elements and order as the calling index; False otherwise.
- Return type:
bool
Examples
The elements inside are compared
The order is compared
The dtype is not compared
# Snowpark pandas only supports signed integers so cast to uint won’t work >>> uint64_idx = pd.Index([1, 2, 3], dtype=’uint64’) >>> uint64_idx Index([1, 2, 3], dtype=’int64’) >>> int64_idx.equals(uint64_idx) True