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]')
-
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/0.24.2/reference/api/pandas.arrays.IntervalArray.set_closed.html