humidity = humidity.fillna(method='ffill')
It is cleaned using fillna() method with ffill parameter which propagates last valid observation to fill gaps
.fillna(method='bfill')
First, we used ffill parameter which propagates last valid observation to fill gaps. Then we use bfill to propogate next valid observation to fill gaps.
bfill이 뒤에 걸로 앞으 Nan값을 채우겠다는 뜻.
'개발 > ML+ Data Science' 카테고리의 다른 글
TensorFlow Js 공부사이트 (0) | 2019.10.18 |
---|---|
https://experiments.withgoogle.com 구글에 아이디어 내기 (0) | 2019.10.18 |
Prophet model Save & Load (0) | 2019.10.14 |
ARIMA모델 저장하고 불러오기 (0) | 2019.10.14 |
[시계열] 기초지식 (0) | 2019.10.13 |