Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python Pandas - CategoricalIndex의 범주를 순서가 지정되지 않도록 설정

<시간/>

CategoricalIndex의 카테고리를 순서가 지정되지 않도록 설정하려면 as_unordered()를 사용하세요. Pandas의 메소드

먼저 필요한 라이브러리를 가져옵니다 -

import pandas as pd

"categories" 매개변수를 사용하여 범주에 대한 범주를 설정합니다. True −

값을 갖는 "ordered" 매개변수를 사용하여 범주형을 정렬된 것으로 처리합니다.
catIndex = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"])

범주를 순서가 지정되지 않도록 설정 -

print("\nCategoricalIndex unordered...\n", catIndex.as_unordered())

예시

다음은 코드입니다 -

import pandas as pd

# Set the categories for the categorical using the "categories" parameter
# Treat the categorical as ordered using the "ordered" parameter with value True
catIndex = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, 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 unordered
print("\nCategoricalIndex unordered...\n", catIndex.as_unordered())

출력

이것은 다음과 같은 출력을 생성합니다 -

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

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

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