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

Python Pandas - 순서가 반대인 두 개의 Index 객체가 같은지 확인

<시간/>

순서가 반대인 두 인덱스 개체가 같은지 확인하려면 equals()를 사용하세요. 방법.

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

import pandas as pd

Pandas index1 및 index2 생성 -

index1 = pd.Index([15, 25, 35, 45, 55, 65, 75, 85, 95])
index2 = pd.Index([95, 85, 75, 65, 55, 45, 35, 25, 15])

index1 및 index2 표시 -

print("Pandas Index1...\n",index1)
print("Pandas Index2...\n",index2)

순서가 반대인 두 개의 인덱스 객체가 같은지 확인 -

print("\nAre two Index objects with opposite order equal?"
"\n",index1.equals(index2))

예시

다음은 코드입니다 -

import pandas as pd

# Creating Pandas index1 and index2
index1 = pd.Index([15, 25, 35, 45, 55, 65, 75, 85, 95])
index2 = pd.Index([95, 85, 75, 65, 55, 45, 35, 25, 15])

# Display the index1 and index2
print("Pandas Index1...\n",index1)
print("Pandas Index2...\n",index2)

print("\nAre two Index objects with opposite order equal?"
"\n",index1.equals(index2))

출력

이것은 다음 코드를 생성합니다 -

Pandas Index1...
Int64Index([15, 25, 35, 45, 55, 65, 75, 85, 95], dtype='int64')
Pandas Index2...
Int64Index([95, 85, 75, 65, 55, 45, 35, 25, 15], dtype='int64')

Are two Index objects with opposite order equal?
False