bigframes.pandas.Series.is_monotonic_decreasing#

property Series.is_monotonic_decreasing: bool#

Return boolean if values in the object are monotonically decreasing.

Examples:

>>> s = bpd.Series([3, 2, 2, 1])
>>> s.is_monotonic_decreasing
np.True_
>>> s = bpd.Series([1, 2, 3])
>>> s.is_monotonic_decreasing
np.False_
Returns:

Boolean.

Return type:

bool