pandas.Index.is_monotonic_increasing#

property Index.is_monotonic_increasing[source]#

Return a boolean if the values are equal or increasing.

Examples

>>> Index([1, 2, 3]).is_monotonic_increasing
True
>>> Index([1, 2, 2]).is_monotonic_increasing
True
>>> Index([1, 3, 2]).is_monotonic_increasing
False