Normalise an array of values with added context, depending on strategy.
Strategies are available: minmax, zscore & robust
ixfx Guide on Normalising
Use array to get back the min/max/range and original values
const { values, min, max, range } = Normalise.arrayWithContext(`minmax`, [5,1,0,9,10]);// values will be normalised output Copy
const { values, min, max, range } = Normalise.arrayWithContext(`minmax`, [5,1,0,9,10]);// values will be normalised output
For more details, see:
Normalise an array of values with added context, depending on strategy.
Strategies are available: minmax, zscore & robust
ixfx Guide on Normalising
Use array to get back the min/max/range and original values
For more details, see: