pandas.Interval.length#
- Interval.length#
Return the length of the Interval.
The length is the distance between the right and left bounds, i.e.
right - left. For time-like bounds this returns atimedeltaorTimedelta.See also
Interval.is_emptyIndicates if an interval contains no points.
Examples
>>> interval = pd.Interval(left=1, right=2, closed='left') >>> interval Interval(1, 2, closed='left') >>> interval.length 1