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

Python Pandas - 두 인덱스 개체가 유사한 개체 속성 및 유형을 가지고 있는지 확인

<시간/>

두 Index 객체가 유사한 객체 속성과 유형을 가지고 있는지 확인하려면 index1.identical(index2) 방법.

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

import pandas as pd

Pandas index1 및 index2 생성 -

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

index1 및 index2 표시 -

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

두 인덱스 개체의 속성 및 유형이 유사한지 확인 -

print("\nThe two Index objects have similar attributes and types?" "\n",index1.identical(index2))

예시

다음은 코드입니다 -

import pandas as pd

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

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

print("\nThe two Index objects have similar attributes and types?" "\n",index1.identical(index2))

출력

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

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

The two Index objects have similar attributes and types?
True