bigframes.pandas.Series.is_monotonic_decreasing#

propertySeries.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_decreasingnp.True_
>>>s=bpd.Series([1,2,3])>>>s.is_monotonic_decreasingnp.False_
Returns:

Boolean.

Return type:

bool