public class OutlierSqrtScaling extends java.lang.Object implements OutlierScaling
Transformation is done by taking the square root, then doing a linear linear mapping onto 0:1 using the minimum values seen.
Modifier and Type | Class and Description |
---|---|
static class |
OutlierSqrtScaling.Parameterizer
Parameterization class.
|
Modifier and Type | Field and Description |
---|---|
protected double |
factor
Scaling factor
|
protected double |
max
Minimum and maximum values.
|
protected double |
min
Minimum and maximum values.
|
protected java.lang.Double |
pmax
Predefined minimum and maximum values.
|
protected java.lang.Double |
pmin
Predefined minimum and maximum values.
|
Constructor and Description |
---|
OutlierSqrtScaling(java.lang.Double pmin,
java.lang.Double pmax)
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.
|
protected double min
protected double max
protected java.lang.Double pmin
protected java.lang.Double pmax
protected double factor
public OutlierSqrtScaling(java.lang.Double pmin, java.lang.Double pmax)
pmin
- Predefined minimumpmax
- Predefined maximumpublic 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.