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

Python Pandas - ตั้งค่าหมวดหมู่ของ CategoricalIndex ที่จะสั่งซื้อ


ในการตั้งค่าหมวดหมู่ของ CategoricalIndex ที่จะเรียงลำดับ ให้ใช้ as_ordered() วิธีการในนุ่น

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

import pandas as pd

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

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

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

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

ตั้งค่าหมวดหมู่ที่จะสั่งซื้อ -

print("\nCategoricalIndex ordered...\n", catIndex.as_ordered())

ตัวอย่าง

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

import pandas as pd

# Set the categories for the categorical using the "categories" parameter
catIndex = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], categories=["p", "q", "r", "s"])

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

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

# Set the categories to be ordered
print("\nCategoricalIndex ordered...\n", catIndex.as_ordered())

ผลลัพธ์

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

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

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

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