Python으로 배우는 이상치 탐지
Bekhruz (Bex) Tuychiev
Kaggle Master, Data Science Content Creator
이상치 포함/제외 두 가지로 분석하십시오.
# Calculate the percentiles percentile_first = google['Volume'].quantile(0.01) percentile_99th = google['Volume'].quantile(0.99)# Trim google['Volume'] = google['Volume'].clip(percentile_first, percentile_99th)
google.replace(0, 100, inplace=True)
Python으로 배우는 이상치 탐지