pandas.IntervalIndex.from_tuples¶
-
classmethod
IntervalIndex.
from_tuples
(data, closed='right', name=None, copy=False)[source]¶ Construct an IntervalIndex from a list/array of tuples
Parameters: data : array-like (1-dimensional)
Array of tuples
closed : {‘left’, ‘right’, ‘both’, ‘neither’}, optional
Whether the intervals are closed on the left-side, right-side, both or neither. Defaults to ‘right’.
name : object, optional
Name to be stored in the index.
copy : boolean, default False
by-default copy the data, this is compat only and ignored
See also
interval_range
- Function to create a fixed frequency IntervalIndex
IntervalIndex.from_arrays
- Construct an IntervalIndex from a left and right array
IntervalIndex.from_breaks
- Construct an IntervalIndex from an array of splits
IntervalIndex.from_intervals
- Construct an IntervalIndex from an array of Interval objects
Examples
>>> pd.IntervalIndex.from_tuples([(0, 1), (1,2)]) IntervalIndex([(0, 1], (1, 2]], closed='right', dtype='interval[int64]')