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

Python Pandas CategoricalIndex - ตรวจสอบว่าหมวดหมู่มีความสัมพันธ์ที่เรียงลำดับหรือไม่


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

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

ตั้งค่าหมวดหมู่สำหรับหมวดหมู่โดยใช้พารามิเตอร์ "หมวดหมู่" ปฏิบัติต่อการจัดหมวดหมู่ตามคำสั่งโดยใช้พารามิเตอร์ "จัดลำดับ" -

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("\nDoes categories have ordered relationship...\n",catIndex.ordered)

ตัวอย่าง

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

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("\nDisplayingCategories from CategoricalIndex...\n",catIndex.categories)

# Check categories for ordered relationship
print("\nDoes categories have ordered relationship...\n",catIndex.ordered)

ผลลัพธ์

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

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')

Does categories have ordered relationship...
True