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)
ScalingFunctiongetScaled in interface ScalingFunctionvalue - Original valuepublic 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 adapterpublic double getMin()
ScalingFunctionDouble.NaN or
Double.NEGATIVE_INFINITY.getMin in interface ScalingFunctionpublic double getMax()
ScalingFunctionDouble.NaN or
Double.POSITIVE_INFINITY.getMax in interface ScalingFunctionCopyright © 2019 ELKI Development Team. License information.