@Reference(authors="Hans-Peter Kriegel, Peer Kr\u00f6ger, Erich Schubert, Arthur Zimek",title="Outlier Detection in Arbitrarily Oriented Subspaces",booktitle="Proc. IEEE Int. Conf. on Data Mining (ICDM 2012)",url="https://doi.org/10.1109/ICDM.2012.21",bibkey="DBLP:conf/icdm/KriegelKSZ12") @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 COPOutlierScaling extends java.lang.Object implements OutlierScaling
Enhanced version of the scaling proposed in:
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)
See also:
Hans-Peter Kriegel, Peer Kröger, Erich Schubert, Arthur Zimek
Outlier Detection in Arbitrarily Oriented Subspaces
in: Proc. IEEE Int. Conf. on Data Mining (ICDM 2012)
| Modifier and Type | Class and Description |
|---|---|
static class |
COPOutlierScaling.Parameterizer
Parameterization class.
|
| Modifier and Type | Field and Description |
|---|---|
private Distribution |
dist
Score distribution.
|
private boolean |
inverted
Inversion flag.
|
private double |
phi
Phi parameter.
|
| Constructor and Description |
|---|
COPOutlierScaling(double phi)
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.
|
private double phi
private Distribution dist
private boolean inverted
public COPOutlierScaling(double phi)
phi - Phi parameterpublic double getScaled(double value)
ScalingFunctiongetScaled in interface ScalingFunctionvalue - Original valuepublic double getMin()
ScalingFunctionDouble.NaN or
Double.NEGATIVE_INFINITY.getMin in interface ScalingFunctionpublic double getMax()
ScalingFunctionDouble.NaN or
Double.POSITIVE_INFINITY.getMax in interface ScalingFunctionpublic void prepare(OutlierResult or)
OutlierScalingprepare in interface OutlierScalingor - Outlier result to usepublic <A> void prepare(A array,
NumberArrayAdapter<?,A> adapter)
OutlierScalingOutlierResult is preferred, as it will
allow access to the metadata.prepare in interface OutlierScalingarray - Data to processadapter - Array adapterCopyright © 2019 ELKI Development Team. License information.