Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- port
- javascript
- Excel
- 라즈베리파이
- IOS
- MS-SQL
- 유니티
- Linux
- mssql
- PyQt5
- node.js
- tensorflow
- 맛집
- MySQL
- swift
- urllib
- python
- 리눅스
- ASP
- pandas
- GIT
- 함수
- ubuntu
- Unity
- 다이어트
- 날짜
- flutter
- sqlite
- PyQt
- PER
Archives
아미(아름다운미소)
index.duplicated() 메서드 사용 본문
index.duplicated() 메서드 사용
# 중복된 인덱스 위치 확인
duplicated = df.index.duplicated(keep='first') # 첫 번째 발생은 False, 이후 중복은 True
print(duplicated)
# 출력: [False False True False]
# 중복된 인덱스 값 확인
duplicated_values = df.index[df.index.duplicated()]
print(duplicated_values)
# 출력: Index(['b'], dtype='object')
value_counts()로 중복 횟수 확인
# 각 인덱스 값의 발생 횟수 확인
index_counts = df.index.value_counts()
print(index_counts)
# 출력:
# b 2
# a 1
# c 1
# 1번 이상 나타나는 인덱스 (중복된 인덱스) 필터링
duplicates = index_counts[index_counts > 1]
print(duplicates)
# 출력:
# b 2
'랭귀지 > pandas' 카테고리의 다른 글
type 함수 (0) | 2025.04.03 |
---|---|
errors='coerce'로 NaT 변환 후 처리 (0) | 2025.04.01 |
pandas_profiling (대규모 데이터 분석) (0) | 2025.03.28 |
메모리 사용량을 상세히 분석 (0) | 2025.03.28 |
df비교 (0) | 2025.03.27 |
Comments