pandas.Series.is_monotonic_decreasing#

property Series.is_monotonic_decreasing[源代码]#

如果对象中的值是单调递减的,则返回 True。

返回:
bool

参见

Series.is_monotonic_increasing

如果对象中的值是单调递增的,则返回布尔值。

例子

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