@Reference(authors="Hans-Peter Kriegel, Peer Kr\u00f6ger, Erich Schubert, Arthur Zimek", title="Interpreting and Unifying Outlier Scores", booktitle="Proc. 11th SIAM International Conference on Data Mining (SDM 2011)", url="https://doi.org/10.1137/1.9781611972818.2", bibkey="DBLP:conf/sdm/KriegelKSZ11") public class MultiplicativeInverseScaling extends java.lang.Object implements OutlierScaling
The exact formula can be written as \[ 1 / (v \cdot \max_{x\neq 0}\frac{1}{|x|}) = \min_{x \neq 0}(|x|) / v \] with 1 / 0 := 1
Reference:
Hans-Peter Kriegel, Peer Kröger, Erich Schubert, Arthur Zimek
Interpreting and Unifying Outlier Scores
Proc. 11th SIAM International Conference on Data Mining (SDM 2011)
Modifier and Type | Field and Description |
---|---|
(package private) double |
scaleval
Scaling value, set by
prepare(de.lmu.ifi.dbs.elki.result.outlier.OutlierResult) . |
Constructor and Description |
---|
MultiplicativeInverseScaling()
Constructor.
|
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.
|
<A> void |
prepare(A array,
NumberArrayAdapter<?,A> adapter)
Prepare is called once for each data set, before getScaled() will be
called.
|
void |
prepare(OutlierResult or)
Prepare is called once for each data set, before getScaled() will be
called.
|
double scaleval
prepare(de.lmu.ifi.dbs.elki.result.outlier.OutlierResult)
.public double getScaled(double value)
ScalingFunction
getScaled
in interface ScalingFunction
value
- Original valuepublic void prepare(OutlierResult or)
OutlierScaling
prepare
in interface OutlierScaling
or
- Outlier result to usepublic <A> void prepare(A array, NumberArrayAdapter<?,A> adapter)
OutlierScaling
OutlierResult
is preferred, as it will
allow access to the metadata.prepare
in interface OutlierScaling
array
- Data to processadapter
- Array adapterpublic double getMin()
ScalingFunction
Double.NaN
or
Double.NEGATIVE_INFINITY
.getMin
in interface ScalingFunction
public double getMax()
ScalingFunction
Double.NaN
or
Double.POSITIVE_INFINITY
.getMax
in interface ScalingFunction
Copyright © 2019 ELKI Development Team. License information.