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

Python Pandas - 두 개의 CategoricalIndex 개체에 동일한 요소가 포함되어 있는지 확인

<시간/>

두 CategoricalIndex 개체에 동일한 요소가 포함되어 있는지 확인하려면 equals()를 사용하세요. 방법. 먼저 필요한 라이브러리를 가져옵니다 -

import pandas as pd

"categories" 매개변수를 사용하여 범주에 대한 범주를 설정합니다. "ordered" 매개변수를 사용하여 범주형을 순서대로 처리합니다. 두 개의 CategoricalIndex 객체 생성 -

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

두 CategoricalIndex 개체가 동일한지 확인하십시오 -

print("\nCheck both the CategoricalIndex objects for equality...\n",catIndex1.equals(catIndex2))

다음은 코드입니다 -

import pandas as pd

# Set the categories for the categorical using the "categories" parameter
# Treat the categorical as ordered using the "ordered" parameter
# Create two CategoricalIndex objects
catIndex1 = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"])
catIndex2 = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"])

# Display the CategoricalIndex objects
print("CategoricalIndex1...\n",catIndex1)
print("\nCategoricalIndex2...\n",catIndex2)

# Check both the CategoricalIndex objects for equality
print("\nCheck both the CategoricalIndex objects for equality...\n",catIndex1.equals(catIndex2))

출력

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

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

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

Check both the CategoricalIndex objects for equality...
True