pandas.arrays.IntervalArray.set_closed¶
-
IntervalArray.
set_closed
(closed)[source]¶ Return an IntervalArray identical to the current one, but closed on the specified side
New in version 0.24.0.
Parameters: - closed : {‘left’, ‘right’, ‘both’, ‘neither’}
Whether the intervals are closed on the left-side, right-side, both or neither.
Returns: - new_index : IntervalArray
Examples
>>> index = pd.interval_range(0, 3) >>> index IntervalIndex([(0, 1], (1, 2], (2, 3]], closed='right', dtype='interval[int64]') >>> index.set_closed('both') IntervalIndex([[0, 1], [1, 2], [2, 3]], closed='both', dtype='interval[int64]')