pandas.arrays.IntervalArray.from_tuples — pandas 2.2.3 documentation (original) (raw)
classmethod IntervalArray.from_tuples(data, closed='right', copy=False, dtype=None)[source]#
Construct an IntervalArray from an array-like of tuples.
Parameters:
dataarray-like (1-dimensional)
Array of tuples.
closed{‘left’, ‘right’, ‘both’, ‘neither’}, default ‘right’
Whether the intervals are closed on the left-side, right-side, both or neither.
copybool, default False
By-default copy the data, this is compat only and ignored.
dtypedtype or None, default None
If None, dtype will be inferred.
Returns:
IntervalArray
Examples
pd.arrays.IntervalArray.from_tuples([(0, 1), (1, 2)]) [(0, 1], (1, 2]] Length: 2, dtype: interval[int64, right]