일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- instance
- 다나와
- Project
- 프로젝트
- Method
- TypeScript
- 크롤링
- AWS
- opencv
- Scrum
- tensorflow
- Crawling
- python
- angular
- algorithm
- webcrawling
- analyzing
- data analyze
- DANAWA
- ECS
- javascript
- matplotlib
- Agile
- pandas
- 애자일
- 자바스크립트
- data
- keras
- adaptive life cycle
- visualizing
Archives
- Today
- Total
목록na (1)
LiJell's 성장기
16.python_NA_missing_duplicate_value
Modified on Jan 10 # -- coding: utf-8 -- """ Created on Tue Dec 28 14:56:05 2021 @author: hanju """ 16. NA 결측치 처리, 중복값 제거 (significantly important) NA (결측치) 처리 숫자형 NA (float type), 문자형 NA import numpy as np import pandas as pd from pandas import Series, DataFrame s1= Series([1,2,3,np.nan]) s1 # 0 1.0 # 1 2.0 # 2 3.0 # 3 NaN # dtype: float64 s2 = Series(['a','b','c', np.na..
Bigdata/파이썬_Python
2022. 1. 10. 20:41