- API reference
- pandas arrays, scalars, and data types
- pandas.Inter...
pandas.Interval.open_left#
- Interval.open_left#
Check if the interval is open on the left side.
For the meaning ofclosed andopen see
Interval.- Returns:
- bool
True if the Interval is not closed on the left-side.
See also
Interval.open_rightCheck if the interval is open on the right side.
Interval.closed_leftBoolean inverse of open_left.
Examples
>>>iv=pd.Interval(0,5,closed='neither')>>>iv.open_leftTrue
>>>iv=pd.Interval(0,5,closed='both')>>>iv.open_leftFalse
On this page