pandas.Index.is_monotonic_decreasing # 财产 指数。is_monotonic_decreasing [来源] # 如果值相等或递减,则返回布尔值。 返回: 布尔值 也可以看看 Index.is_monotonic_increasing检查值是否相等或递增。 例子 >>> pd.Index([3, 2, 1]).is_monotonic_decreasing True >>> pd.Index([3, 2, 2]).is_monotonic_decreasing True >>> pd.Index([3, 1, 2]).is_monotonic_decreasing False