data-analysis

Definition

Mean Normalisation

Mean normalisation is a data preprocessing technique used to rescale numerical features such that they have a zero mean and are bounded by a specific range. Formally, for a feature with values , the transformed value is:

where is the arithmetic mean of the feature, i.e.:

Statistical Impact

This transformation centers the distribution around zero while maintaining the relative distances between instances. Similar to min-max scaling, it remains sensitive to outliers due to the use of range-based statistics in the denominator.

Definition

Independent Feature Scaling

Independent feature scaling is the principle that statistical scaling operations must be applied individually to each feature dimension of a dataset. Formally, for a dataset with , the scaling parameters (e.g., ) are computed for each dimension independently:

Link to original