Package elki.math.statistics.dependence
Class HiCSDependence.Par
- java.lang.Object
-
- elki.math.statistics.dependence.HiCSDependence.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- HiCSDependence
public static class HiCSDependence.Par extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description private doublealphaAlpha thresholdstatic OptionIDALPHA_IDParameter that determines the size of the test statistic during the Monte-Carlo iteration.private intmMonte-Carlo iterationsstatic OptionIDM_IDParameter that specifies the number of iterations in the Monte-Carlo process of identifying high contrast subspaces.private RandomFactoryrndRandom generator.static OptionIDSEED_IDParameter that specifies the random seed.private GoodnessOfFitTeststatTestStatistical test to usestatic OptionIDTEST_IDParameter that specifies which statistical test to use in order to calculate the deviation of two given data samples.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(Parameterization config)Configure the class.HiCSDependencemake()Make an instance after successful configuration.
-
-
-
Field Detail
-
M_ID
public static final OptionID M_ID
Parameter that specifies the number of iterations in the Monte-Carlo process of identifying high contrast subspaces.
-
ALPHA_ID
public static final OptionID ALPHA_ID
Parameter that determines the size of the test statistic during the Monte-Carlo iteration.
-
TEST_ID
public static final OptionID TEST_ID
Parameter that specifies which statistical test to use in order to calculate the deviation of two given data samples.
-
SEED_ID
public static final OptionID SEED_ID
Parameter that specifies the random seed.
-
statTest
private GoodnessOfFitTest statTest
Statistical test to use
-
m
private int m
Monte-Carlo iterations
-
alpha
private double alpha
Alpha threshold
-
rnd
private RandomFactory rnd
Random generator.
-
-
Method Detail
-
configure
public void configure(Parameterization config)
Description copied from interface:ParameterizerConfigure the class.Note: the status is collected by the parameterization object, so that multiple errors may arise and be reported in one run.
- Specified by:
configurein interfaceParameterizer- Parameters:
config- Parameterization
-
make
public HiCSDependence make()
Description copied from interface:ParameterizerMake an instance after successful configuration.Note: your class should return the exact type, only this very broad interface should use
Objectas return type.- Specified by:
makein interfaceParameterizer- Returns:
- a new instance
-
-