Normalise an array of values.
Strategies are available: minmax, zscore & robust
ixfx Guide on Normalising
Use arrayWithContext to get back the min/max/range and original values
// Yields: [0.5, 0.1, 0.0, 0.9, 1]Normalise.array(`minmax`, [5,1,0,9,10]); Copy
// Yields: [0.5, 0.1, 0.0, 0.9, 1]Normalise.array(`minmax`, [5,1,0,9,10]);
For more details, see:
Normalise an array of values.
Strategies are available: minmax, zscore & robust
ixfx Guide on Normalising
Use arrayWithContext to get back the min/max/range and original values
For more details, see: