public interface ScalingFunction
When using outlier scaling functions, make sure to invoke
prepare
to invoke the preprocessing step!
Outside of an outlier context, you probably want to use
StaticScalingFunction
instead, which may not require a
prepare
statement.
Modifier and Type | Method and Description |
---|---|
double |
getMax()
Get maximum resulting value.
|
double |
getMin()
Get minimum resulting value.
|
double |
getScaled(double value)
Transform a given value using the scaling function.
|
double getScaled(double value)
value
- Original valuedouble getMin()
Double.NaN
or
Double.NEGATIVE_INFINITY
.double getMax()
Double.NaN
or
Double.POSITIVE_INFINITY
.Copyright © 2019 ELKI Development Team. License information.