Feature Engineering
Feature Engineering
Machine
Learning
Week #2
1 One-Hot Encoding
2 Ordinal Encoding
3 Label Encoding
One-Hot Encoding
1 Standard Scaler
2 MinMax Scaler
3 Robust Scaler
StandardScaler()
sklearn.preprocessing.StandardScaler
This transformation is often used as an alternative to zero mean, unit variance scaling.
RobustScaler()
sklearn.preprocessing.RobustScaler
This Scaler removes the median and scales the data according to the quantile
range (defaults to IQR: Interquartile Range).
The IQR is the range between the 1st quartile (25th quantile) and the 3rd
quartile (75th quantile).
1 Filter Method
Embedded Method
2
(Feature Importances)
Filter Method
1 Linear Regression
2 Decision Tree
Simple Linear Regression