IntervalIndex.
from_breaks
Construct an IntervalIndex from an array of splits.
Left and right bounds for each interval.
Whether the intervals are closed on the left-side, right-side, both or neither.
Copy the data.
If None, dtype will be inferred.
New in version 0.23.0.
See also
interval_range
Function to create a fixed frequency IntervalIndex.
IntervalIndex.from_arrays
Construct from a left and right array.
IntervalIndex.from_tuples
Construct from a sequence of tuples.
Examples
>>> pd.IntervalIndex.from_breaks([0, 1, 2, 3]) IntervalIndex([(0, 1], (1, 2], (2, 3]], closed='right', dtype='interval[int64]')