
public class OutlierSqrtScaling extends Object implements OutlierScalingFunction
| 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 Double |
pmax
Predefined minimum and maximum values.
|
protected Double |
pmin
Predefined minimum and maximum values.
|
| Constructor and Description |
|---|
OutlierSqrtScaling(Double pmin,
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 Double pmin
protected Double pmax
protected double factor
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 ScalingFunctionCopyright © 2015 ELKI Development Team, Lehr- und Forschungseinheit für Datenbanksysteme, Ludwig-Maximilians-Universität München. License information.