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
- Join
- 프로그래머스
- pandas
- 데이터시각화
- 가상환경
- python
- 노마드코딩
- 선그래프
- 알고리즘 스터디
- openCV
- Stack
- 알고리즘
- Algorithm
- 코딩테스트
- 정보처리기사 c언어
- type hint
- 백준
- MySQL
- NumPy
- aws jupyter notebook
- String Method
- Matplotlib
- 알고리즘스터디
- programmers
- 파이썬
- queue
- Selenium
- 자료구조
- javascript
- dataframe
Archives
- Today
- Total
조금씩 꾸준히 완성을 향해
[Pandas] 데이터 전처리 / 중복 데이터 확인 및 제거 (duplicated, drop_duplicates) 본문
Python/Numpy & Pandas
[Pandas] 데이터 전처리 / 중복 데이터 확인 및 제거 (duplicated, drop_duplicates)
all_sound 2022. 10. 2. 18:44중복 데이터 처리
▶ 중복 데이터 확인
- duplicated() : 동일한 관측값이 중복되는지 여부를 확인
- 전에 나온 행들과 비교하여 중복되는 행이면 True, 처음 나오는 행은 False 반환
df
#데이터 프레임 전체행에서 중복값 찾기
df.duplicated()
# c2열에서 중복값 찾기
df.c2.duplicated()
▶ 중복 데이터 제거
- drop_duplicates() : 중복된 행을 제거하고 고유한 관측값을 가진 행들만 보존
#데이터 프래임에서 중복 행을 제거
df.drop_duplicates()
# c2,c3 열을 기준으로 중복 행을 제거(subset 옵션)
df.drop_duplicates(subset=['c2', 'c3'])
'Python > Numpy & Pandas' 카테고리의 다른 글
[Pandas] 범주형(category) 데이터처리 / 구간분할(pd.cut, np.histogram) (0) | 2022.10.04 |
---|---|
[Pandas] 데이터 전처리 / 데이터 단위 변경, 데이터 타입 변경 (0) | 2022.10.04 |
[Pandas] 데이터 전처리 / 누락 데이터 처리 (isnull, notnull, dropna, fillna) (0) | 2022.10.02 |
[Pandas] Index 활용 함수(set_idex, reindex, reset_index, sort_index) (0) | 2022.09.29 |
[Pandas] 행과 열 다루기(삭제, 선택, 추가, 변경) (0) | 2022.09.29 |