This question evaluates a candidate's competency in feature scaling and normalization techniques within Machine Learning feature engineering, specifically the application of standardization and min-max normalization to numerical DataFrame columns.
You're preparing features in a notebook step before training a model. You have a pandas DataFrame df with two numeric columns: age and income.
age
column (mean 0, variance 1).
income
column to [0, 1].
Assume scikit-learn is available.
Login required