q1 = df[col].quantile(0.25)
q3 = df[col].quantile(0.75)
iqr = q3 - q1
return df[(df[col] < q1-1.5*iqr) | (df[col] > q3+1.5*iqr)]Standardization : 평균 0, 분산 1로 변환
x_standardization = (x - x.mean())/x.std()
Min-Max Scaling : 최솟값 0, 초댓값 1로 변환
x_min_max = (x-x.min())/(x.max()-x.min())
test데이터도 train데이터를 정규화 시켰던 기준 그대로 정규화 해야 함