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