Min max
Last updated
Min-max normalization is one of the most common ways to normalize data. For every feature, the minimum value of that feature gets transformed into a 0, the maximum value gets transformed into a 1, and every other value gets transformed into a decimal between 0 and 1.
time window:
emitting type: slidingMinMaxNormalization
window functions:
normalization:
function:
minmax norm: {}
attributes: [ ask,bid ]
policy:
type: slidingTime
slide: 500
window size: 2500After processing, attributes receive automatically applied postfix ID = MINMAX_NORM
ask
ask_MINMAX_NORM
double value
bid
bid_MINMAX_NORM
double value
Last updated