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

pythonpandasserver side programmingprogramming

要从有序分类索引中获取最大值,请使用 Pandas 中的 catIndex.max() 方法。

首先,导入所需的库 −

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.max())

示例

以下是代码 −

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("分类索引...\n",catIndex)

# 获取类别
print("\n显示来自 CategoricalIndex 的类别...\n",catIndex.categories)

# 获取最大值
print("\n来自 CategoricalIndex 的最大值...\n",catIndex.max())

输出

这将产生以下输出 −

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 的最大值...
S

相关文章