public static enum EvaluateIntrinsicDimensionalityEstimators.Aggregate extends Enum<EvaluateIntrinsicDimensionalityEstimators.Aggregate>
Enum Constant and Description |
---|
HMEAN
Harmonic mean.
|
MEAN
Aggregate using the mean only.
|
MEAN_STDDEV
Aggregate as mean and standard deviation.
|
MEAN_STDDEV_MIN_MAX
Aggregate as mean and standard deviation.
|
MED_MAD
Aggregate using median and MAD.
|
MED_MAD_MIN_MAX
Aggregate using median and MAD.
|
MEDIAN
Aggregate using median.
|
QUANTILES
Selected quantiles.
|
Modifier and Type | Method and Description |
---|---|
(package private) abstract double[] |
aggregate(double[] data)
Aggregate values.
|
(package private) abstract String[] |
description()
Descriptions of the aggregate values.
|
static EvaluateIntrinsicDimensionalityEstimators.Aggregate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvaluateIntrinsicDimensionalityEstimators.Aggregate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvaluateIntrinsicDimensionalityEstimators.Aggregate MEAN
public static final EvaluateIntrinsicDimensionalityEstimators.Aggregate MEAN_STDDEV
public static final EvaluateIntrinsicDimensionalityEstimators.Aggregate MEAN_STDDEV_MIN_MAX
public static final EvaluateIntrinsicDimensionalityEstimators.Aggregate HMEAN
public static final EvaluateIntrinsicDimensionalityEstimators.Aggregate MEDIAN
public static final EvaluateIntrinsicDimensionalityEstimators.Aggregate MED_MAD
public static final EvaluateIntrinsicDimensionalityEstimators.Aggregate MED_MAD_MIN_MAX
public static final EvaluateIntrinsicDimensionalityEstimators.Aggregate QUANTILES
public static EvaluateIntrinsicDimensionalityEstimators.Aggregate[] values()
for (EvaluateIntrinsicDimensionalityEstimators.Aggregate c : EvaluateIntrinsicDimensionalityEstimators.Aggregate.values()) System.out.println(c);
public static EvaluateIntrinsicDimensionalityEstimators.Aggregate valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullabstract double[] aggregate(double[] data)
data
- Data to aggregate.abstract String[] description()
Copyright © 2015 ELKI Development Team, Lehr- und Forschungseinheit für Datenbanksysteme, Ludwig-Maximilians-Universität München. License information.