pd.Index.intersection¶
pandasIndex.intersection(other, sort=None)
Supported Arguments:¶
other: can be an Index, Series, or 1-dim numpy array with a matching type for the Index
Supported Index Types
- NumericIndex
 - StringIndex
 - BinaryIndex
 - RangeIndex
 - DatetimeIndex
 - TimedeltaIndex
 
Important
Bodo diverges from the Pandas API for Index.intersection() in several ways: the default is sort=None, and a NumericIndex is always returned instead of a RangeIndex.