modin.pandas.Series.is_monotonic_increasing¶ property Series.is_monotonic_increasing: bool[source]¶ Return boolean if values in the object are monotonically increasing. Returns: Whether or not the Series is monotonically increasing. Return type: bool Examples CopyExpand>>> s = pd.Series([1, 2, 2]) >>> s.is_monotonic_increasing True Show lessSee moreScroll to top CopyExpand>>> s = pd.Series([3, 2, 1]) >>> s.is_monotonic_increasing False Show lessSee moreScroll to top