pandas.IntervalIndex.set_closed — pandas 3.0.0.dev0+2104.ge637b4290d documentation (original) (raw)
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.
Returns inclusive side of the IntervalArray.
Examples
index = pd.arrays.IntervalArray.from_breaks(range(4)) index [(0, 1], (1, 2], (2, 3]] Length: 3, dtype: interval[int64, right] index.set_closed("both") [[0, 1], [1, 2], [2, 3]] Length: 3, dtype: interval[int64, both]