반응형
250x250
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 | 31 |
Tags
- 선형회귀
- 코드잇
- 판다스
- HTML
- 유학생
- matplotlib
- 코딩
- 코딩독학
- 머신러닝
- 경사하강법
- sql연습문제
- for반복문
- 파이썬
- 코드잇 TIL
- 로지스틱회귀
- 코딩공부
- 데이터분석
- 코드잇TIL
- 행렬
- 결정트리
- Seaborn
- 영국석사
- 오늘도코드잇
- 런던
- 다항회귀
- SQL
- 윈도우함수
- CSS
- numpy
- 나혼자코딩
Archives
- Today
- Total
목록중복값제거 (1)
영국 척척석사 유학생 일기장👩🏻🎓
(데이터분석) 중복된 값 제거하기
#import pandas and numpyimport pandas as pdimport numpy as np#Load small test scores dataframetest_scores = pd.read_csv('test_scores.csv')#Make a copy of the dataframeclean_scores = test_scores.copy()clean_scores.head()if_duplicated = clean_scores.duplicated(['Name', 'Age'])if_duplicated Get duplicated rows#Access the duplicated rows for duplicates in the Name and Age columnduplicate_rows = clea..
코딩공부/Data analysis
2024. 5. 17. 11:02