
@Reference(authors="H.-P. Kriegel, P. Kr\u00f6ger, E. Schubert, A. Zimek", title="Interpreting and Unifying Outlier Scores", booktitle="Proc. 11th SIAM International Conference on Data Mining (SDM), Mesa, AZ, 2011", url="http://siam.omnibooksonline.com/2011datamining/data/papers/018.pdf") public class SqrtStandardDeviationScaling extends Object implements OutlierScalingFunction
y = sqrt(x - min)
newscore = max(0, erf(lambda * (y - mean) / (stddev * sqrt(2))))
Where min and mean can be fixed to a given value, and stddev is then computed
against this mean.| Modifier and Type | Class and Description |
|---|---|
static class |
SqrtStandardDeviationScaling.Parameterizer
Parameterization class.
|
| Modifier and Type | Field and Description |
|---|---|
(package private) double |
factor
Effective parameters.
|
(package private) double |
mean
Effective parameters.
|
(package private) double |
min
Effective parameters.
|
(package private) double |
plambda
Predefined lambda scaling factor.
|
(package private) Double |
pmean
Predefined parameters.
|
(package private) Double |
pmin
Predefined parameters.
|
| Constructor and Description |
|---|
SqrtStandardDeviationScaling(Double pmin,
Double pmean,
double plambda)
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 min
double mean
double factor
Double pmin
Double pmean
double plambda
public double getScaled(double value)
ScalingFunctiongetScaled in interface ScalingFunctionvalue - Original valuepublic void prepare(OutlierResult or)
OutlierScalingFunctionprepare in interface OutlierScalingFunctionor - Outlier result to usepublic <A> void prepare(A array,
NumberArrayAdapter<?,A> adapter)
OutlierScalingFunctionOutlierResult is preferred, as it will
allow access to the metadata.prepare in interface OutlierScalingFunctionarray - Data to processadapter - Array adapterpublic double getMin()
ScalingFunctionDouble.NaN or
Double.NEGATIVE_INFINITY.getMin in interface ScalingFunctionpublic double getMax()
ScalingFunctionDouble.NaN or
Double.POSITIVE_INFINITY.getMax in interface ScalingFunction