跳转至

Python | Pandas index.is_单调_递减

原文:https://www.geesforgeks.org/python-pandas-index-is_单调_递减/

熊猫索引是一个实现有序的、可切片的集合的不可变数组。它是存储所有熊猫对象的轴标签的基本对象。

熊猫 **Index.is_monotonic_decreasing**属性返回True如果给定索引对象中的基础数据单调递减,则返回False

语法:索引. is_单调_递减

参数:

返回:布尔值

示例#1: 使用Index.is_monotonic_decreasing属性找出给定索引对象中的底层数据是否单调递减。

# 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属性找出给定索引对象中的底层数据是否单调递减。

# 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 对象的底层数据不是单调递减的。



回到顶部