How to handle null values in dataset for performing feature scaling on a particular column?
That is to say, should we keep the null value as it is, or impute some value?
Is there any tutorial on how to handle null values while feature scaling?
How to handle null values in dataset for performing feature scaling on a particular column?
That is to say, should we keep the null value as it is, or impute some value?
Is there any tutorial on how to handle null values while feature scaling?
You can't do feature scaling when you have null values, you need to impute or drop the values.
Scaling:
To scale all values in the data, we need every value to calculate mean as well as individual scaling factors also.
so Drop or Impute with other values.
Hope you understood!