dask.dataframe.Index.is_monotonic_increasing¶
- property Index.is_monotonic_increasing¶
Return a boolean if the values are equal or increasing.
This docstring was copied from pandas.core.indexes.base.Index.is_monotonic_increasing.
Some inconsistencies with the Dask version may exist.
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