반응형
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 |
Tags
- 유학생
- 오늘도코드잇
- matplotlib
- sql연습문제
- 윈도우함수
- 코딩
- 코드잇TIL
- HTML
- 다항회귀
- 데이터분석
- 선형회귀
- 나혼자코딩
- 로지스틱회귀
- CSS
- 영국석사
- 결정트리
- 머신러닝
- 코딩독학
- 경사하강법
- 코딩공부
- SQL
- 런던
- 코드잇 TIL
- numpy
- 판다스
- 코드잇
- 파이썬
- Seaborn
- for반복문
- 행렬
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