Standardization
Applies to: python, general
Standardization rescales values by subtracting the mean and dividing by the standard deviation.
z = (x - x.mean()) / x.std()
See also: normalization, feature
Applies to: python, general
Standardization rescales values by subtracting the mean and dividing by the standard deviation.
z = (x - x.mean()) / x.std()
See also: normalization, feature