일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프로젝트
- keras
- instance
- opencv
- 애자일
- algorithm
- ECS
- pandas
- TypeScript
- Method
- javascript
- AWS
- analyzing
- Agile
- Crawling
- 크롤링
- 자바스크립트
- DANAWA
- python
- adaptive life cycle
- Scrum
- webcrawling
- matplotlib
- 다나와
- visualizing
- angular
- data
- Project
- tensorflow
- data analyze
Archives
- Today
- Total
목록missing_value (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