Construct an IntervalIndex from an array-like of tuples.
Array of tuples.
Whether the intervals are closed on the left-side, right-side, both or neither.
Name of the resulting IntervalIndex.
By-default copy the data, this is compat only and ignored.
If None, dtype will be inferred.
See also
interval_rangeFunction to create a fixed frequency IntervalIndex.
IntervalIndex.from_arraysConstruct an IntervalIndex from a left and right array.
IntervalIndex.from_breaksConstruct an IntervalIndex from an array of splits.
Examples
>>> pd.IntervalIndex.from_tuples([(0, 1), (1, 2)])
IntervalIndex([(0, 1], (1, 2]],
dtype='interval[int64, right]')
© 2008–2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
© 2011–2025, Open source contributors
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/2.3.0/reference/api/pandas.IntervalIndex.from_tuples.html