Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python Pandas CategoricalIndex - รับหมวดหมู่ของหมวดหมู่นี้


หากต้องการรับหมวดหมู่ของหมวดหมู่นี้ ให้ใช้ หมวดหมู่ คุณสมบัติของ ดัชนีหมวดหมู่ ในหมีแพนด้า ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

CategoricalIndex สามารถใช้กับค่าที่เป็นไปได้ที่จำกัดและมักจะคงที่เท่านั้น (หมวดหมู่ ตั้งค่าหมวดหมู่สำหรับหมวดหมู่โดยใช้พารามิเตอร์ "หมวดหมู่" จัดการหมวดหมู่ตามคำสั่งโดยใช้พารามิเตอร์ "เรียงลำดับ" -

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

แสดงดัชนีหมวดหมู่ -

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

รับหมวดหมู่ -

print("\nDisplaying Categories from CategoricalIndex...\n",catIndex.categories)

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

import pandas as pd

# CategoricalIndex can only take on a limited, and usually fixed, number of possible values
# Set the categories for the categorical using the "categories" parameter
# Treat the categorical as ordered using the "ordered" parameter
catIndex = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"])

# Display the Categorical Index
print("Categorical Index...\n",catIndex)

# Get the categories
print("\nDisplaying Categories from CategoricalIndex...\n",catIndex.categories)

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

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

DisplayingCategories from CategoricalIndex...
Index(['p', 'q', 'r', 's'], dtype='object')