當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pandas.Index.is_monotonic_increasing用法及代碼示例


用法:

property Index.is_monotonic_increasing

如果索引是單調遞增(僅相等或遞增)值,則返回。

例子

>>> Index([1, 2, 3]).is_monotonic_increasing
True
>>> Index([1, 2, 2]).is_monotonic_increasing
True
>>> Index([1, 3, 2]).is_monotonic_increasing
False

相關用法


注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Index.is_monotonic_increasing。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。