bigframes.pandas.DatetimeIndex.is_monotonic_decreasing#

property DatetimeIndex.is_monotonic_decreasing: bool#

Return a boolean if the values are equal or decreasing.

Examples:

>>> bool(bpd.Index([3, 2, 1]).is_monotonic_decreasing)
True
>>> bool(bpd.Index([3, 2, 2]).is_monotonic_decreasing)
True
>>> bool(bpd.Index([3, 1, 2]).is_monotonic_decreasing)
False
Returns:

True, if the values monotonically decreasing, otherwise False.

Return type:

bool