색인에 중복 값이 있는지 확인하려면 index.has_duplicates를 사용하세요. Pandas의 속성
먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
인덱스 생성 -
index = pd.Index(['Car','Bike','Truck','Car','Airplane'])
인덱스 표시 -
print("Pandas Index...\n",index)
인덱스에 중복 값이 있는지 확인 -
print("\nIs the Pandas index having duplicate values?\n",index.has_duplicates)
예시
다음은 코드입니다 -
import pandas as pd # Creating the index index = pd.Index(['Car','Bike','Truck','Car','Airplane']) # Display the index print("Pandas Index...\n",index) # Return an array representing the data in the Index print("\nArray...\n",index.values) # Check if the index is having duplicate values print("\nIs the Pandas index having duplicate values?\n",index.has_duplicates)
출력
이것은 다음 코드를 생성합니다 -
Pandas Index... Index(['Car', 'Bike', 'Truck', 'Car', 'Airplane'], dtype='object') Array... ['Car' 'Bike' 'Truck' 'Car' 'Airplane'] Is the Pandas index having duplicate values? True