@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 OutlierMinusLogScaling extends java.lang.Object implements OutlierScaling
Useful for example for scaling
ABOD
, but see
MinusLogStandardDeviationScaling
and MinusLogGammaScaling
for
more advanced scalings for this algorithm.
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 |
max
Maximum value seen, set by
prepare(de.lmu.ifi.dbs.elki.result.outlier.OutlierResult) |
(package private) double |
mlogmax
Maximum -log value seen, set by
prepare(de.lmu.ifi.dbs.elki.result.outlier.OutlierResult) |
Constructor and Description |
---|
OutlierMinusLogScaling()
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 max
prepare(de.lmu.ifi.dbs.elki.result.outlier.OutlierResult)
double mlogmax
prepare(de.lmu.ifi.dbs.elki.result.outlier.OutlierResult)
public double getScaled(double value)
ScalingFunction
getScaled
in interface ScalingFunction
value
- Original valuepublic 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
public 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 adapterCopyright © 2019 ELKI Development Team. License information.