- API reference
- Index objects
- pandas.Index...
pandas.Index.is_monotonic_increasing#
- propertyIndex.is_monotonic_increasing[source]#
Return a boolean if the values are equal or increasing.
- Returns:
- bool
See also
Index.is_monotonic_decreasingCheck if the values are equal or decreasing.
Examples
>>>pd.Index([1,2,3]).is_monotonic_increasingTrue>>>pd.Index([1,2,2]).is_monotonic_increasingTrue>>>pd.Index([1,3,2]).is_monotonic_increasingFalse
On this page