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

Python Pandas - 중복 인덱스 값 표시

<시간/>

중복된 인덱스 값을 나타내려면 index.duplicated() 메서드를 사용하십시오.

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

import pandas as pd

일부 중복된 인덱스 생성 -

index = pd.Index(['Car','Bike','Airplane','Ship','Airplane'])

인덱스 표시 -

print("Pandas Index with duplicates...\n",index)

중복 인덱스 값을 True로 표시하고 나머지는 False로 표시합니다. 기본적으로 중복 값의 첫 번째 항목은 표시되지 않은 상태로 유지합니다. −

print("\nIndicating duplicate values...\n", index.duplicated())

예시

다음은 코드입니다 -

import pandas as pd

# Creating the index with some duplicates
index = pd.Index(['Car','Bike','Airplane','Ship','Airplane'])

# Display the index
print("Pandas Index with duplicates...\n",index)

# Return the dtype of the data
print("\nThe dtype object...\n",index.dtype)

# get the dimensions of the data
print("\nGet the dimensions...\n",index.ndim)

# Indicate duplicate index values as True, rest False
# By default it keeps the first occurrence of the duplicate value unmarked
print("\nIndicating duplicate values...\n", index.duplicated())

출력

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

Pandas Index with duplicates...
Index(['Car', 'Bike', 'Airplane', 'Ship', 'Airplane'], dtype='object')

The dtype object...
object

Get the dimensions...
1

Indicating duplicate values...
[False False False False True]