Currently the implemented function called normalise in reality is doing standardization, i.e., transforming the numbers to mean 0 and standard deviation of 1. I propose that we
- Rename normalise to standardise
- Implement normalization and name that normalise.
As a reminder:
Normalization (Min-Max Scaling): $\hat{X} = (X - X_{min})/(X_{max} - X_{min})$
Standardization (Z-Score Normalization): $\hat{X} = (X - \mu_X)/\sigma_X$
I know this might be nitpicking but since I think we should have a function that does normalization it just seems odd to give that a different name.