bigframes.pandas.MultiIndex.is_monotonic_increasing#

property MultiIndex.is_monotonic_increasing: bool#

Return a boolean if the values are equal or increasing.

Examples:

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

True, if the values monotonically increasing, otherwise False.

Return type:

bool