pandas.IntervalIndex.set_closed#
- IntervalIndex.set_closed(closed)[source]#
Return an identical IntervalArray closed on the specified side.
- Parameters:
- closed{‘left’, ‘right’, ‘both’, ‘neither’}
Whether the intervals are closed on the left-side, right-side, both or neither.
- Returns:
- IntervalArray
A new IntervalArray with the specified side closures.
See also
IntervalArray.closed
Returns inclusive side of the Interval.
arrays.IntervalArray.closed
Returns inclusive side of the IntervalArray.
Examples
>>> index = pd.arrays.IntervalArray.from_breaks(range(4)) >>> index <IntervalArray> [(0, 1], (1, 2], (2, 3]] Length: 3, dtype: interval[int64, right] >>> index.set_closed("both") <IntervalArray> [[0, 1], [1, 2], [2, 3]] Length: 3, dtype: interval[int64, both]