Pandas 索引是一個不變的ndarray,它實現了有序的,可切片的集合。它是存儲所有 Pandas 對象的軸標簽的基本對象。
Pandas Index.is_monotonic_decreasing
屬性返回True
如果給定Index對象中的基礎數據單調減少,則返回False
。
用法: Index.is_monotonic_decreasing
參數:沒有
返回:布爾值
範例1:采用Index.is_monotonic_decreasing
屬性以確定給定Index對象中的基礎數據是否單調減少。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index([900, 700, 620, 388, 24])
# Print the index
print(idx)
輸出:
現在我們將使用Index.is_monotonic_decreasing
屬性以確定給定Index對象中的基礎數據是否單調減少。
# check if the values in the Index
# are monotonically decreasing
result = idx.is_monotonic_decreasing
# Print the result
print(result)
輸出:
正如我們在輸出中看到的,Index.is_monotonic_decreasing
屬性已返回True
指示給定Index對象的基礎數據正在單調減少。
範例2:采用Index.is_monotonic_decreasing
屬性以確定給定Index對象中的基礎數據是否單調減少。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index(['2012-12-12', None, '2002-1-10', None])
# Print the index
print(idx)
輸出:
現在我們將使用Index.is_monotonic_decreasing
屬性以確定給定Index對象中的基礎數據是否單調減少。
# check if the values in the Index
# are monotonically decreasing
result = idx.is_monotonic_decreasing
# Print the result
print(result)
輸出:
正如我們在輸出中看到的,Index.is_monotonic_decreasing
屬性已返回False
指示給定Index對象的基礎數據不是單調減少。
相關用法
- Python pandas.map()用法及代碼示例
- Python Pandas Series.str.len()用法及代碼示例
- Python Pandas.factorize()用法及代碼示例
- Python Pandas TimedeltaIndex.name用法及代碼示例
- Python Pandas dataframe.ne()用法及代碼示例
- Python Pandas Series.between()用法及代碼示例
- Python Pandas DataFrame.where()用法及代碼示例
- Python Pandas Series.add()用法及代碼示例
- Python Pandas.pivot_table()用法及代碼示例
- Python Pandas Series.mod()用法及代碼示例
- Python Pandas Dataframe.at[ ]用法及代碼示例
- Python Pandas Dataframe.iat[ ]用法及代碼示例
- Python Pandas.pivot()用法及代碼示例
- Python Pandas dataframe.mul()用法及代碼示例
- Python Pandas.melt()用法及代碼示例
注:本文由純淨天空篩選整理自Shubham__Ranjan大神的英文原創作品 Python | Pandas Index.is_monotonic_decreasing。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。