pandas.Interval.left#
- Interval.left#
Left bound for the interval.
See also
Interval.right
Return the right bound for the interval.
numpy.ndarray.left
A similar method in numpy for obtaining the left endpoint(s) of intervals.
Examples
>>> interval = pd.Interval(left=1, right=2, closed='left') >>> interval Interval(1, 2, closed='left') >>> interval.left 1