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로 표시합니다. "유지" 매개변수를 "마지막"으로 설정 -

print("\nIndicating duplicate values except the last occurrence...\n", index.duplicated(keep='last'))

예시

다음은 코드입니다 -

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, except the last occurrence
# Set the "keep" parameter as "last"
print("\nIndicating duplicate values except the last occurrence...\n", index.duplicated(keep='last'))

출력

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

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

The dtype object...
object

Get the dimensions...
1

Indicating duplicate values except the last occurrence...
[False False True False False]