Check if the interval is open on the left side.
For the meaning of closed and open see Interval.
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_left
True
>>> iv = pd.Interval(0, 5, closed='both')
>>> iv.open_left
False
© 2008–2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
© 2011–2025, Open source contributors
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/2.3.0/reference/api/pandas.Interval.open_left.html