Python Pandas - 从有序分类索引中获取最小值

pythonpandasserver side programmingprogramming

要从有序分类索引中获取最小值,请使用 Pandas 中的 catIndex.min() 方法。首先,导入所需的库 −

import pandas as pd

使用 "categories" 参数设置分类的类别。使用 "ordered" 将分类视为有序的参数 −

catIndex = pd.CategoricalIndex(
   ["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"]
)

显示分类索引 −

print("Categorical Index...\n",catIndex)

获取最小值−

print("\nCategoricalIndex 中的最小值...\n",catIndex.min())

示例

以下是代码 −

import pandas as pd

# CategoricalIndex 是基于底层分类的索引
# 使用"categories"参数设置分类的类别
# 使用"ordered"将分类视为有序的参数
catIndex = pd.CategoricalIndex(
   ["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"]
)

# 显示分类索引
print("Categorical Index...\n",catIndex)

# 获取类别
print("\nDisplayingCategories from CategoricalIndex...\n",catIndex.categories)

# 获取最小值
print("\nMinimum value from CategoricalIndex...\n",catIndex.min())

输出

这将产生以下输出 −

Categorical Index...
CategoricalIndex(['p', 'q', 'r', 's', 'p', 'q', 'r', 's'], categories=['p', 'q', 'r', 's'], ordered=True, dtype='category')

显示 CategoricalIndex 中的类别...
Index(['p', 'q', 'r', 's'], dtype='object')

CategoricalIndex 中的最小值...
P

相关文章