You are viewing documentation about an older version (1.23.0). View latest version

modin.pandas.Series.is_monotonic_decreasing

property Series.is_monotonic_decreasing[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.23.0/../../../../../opt/hostedtoolcache/Python/3.9.20/x64/lib/python3.9/site-packages/modin/pandas/series.py#L2184-L2189)

Return boolean if values in the object are monotonically decreasing.

Returns:

Whether or not the Series is monotonically decreasing.

Return type:

bool

Examples

>>> s = pd.Series([3, 2, 2, 1])
>>> s.is_monotonic_decreasing
True
Copy
>>> s = pd.Series([1, 2, 3])
>>> s.is_monotonic_decreasing
False
Copy
Language: English