Class AbstractCutDendrogram.Par
- java.lang.Object
-
- elki.clustering.hierarchical.extraction.AbstractCutDendrogram.Par
-
- All Implemented Interfaces:
elki.utilities.optionhandling.Parameterizer
- Direct Known Subclasses:
CutDendrogramByHeight.Par,CutDendrogramByNumberOfClusters.Par
- Enclosing class:
- AbstractCutDendrogram
public abstract static class AbstractCutDendrogram.Par extends java.lang.Object implements elki.utilities.optionhandling.ParameterizerParameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description (package private) HierarchicalClusteringAlgorithmalgorithmThe hierarchical clustering algorithm to run.(package private) booleanhierarchicalFlag to generate a hierarchical result.static elki.utilities.optionhandling.OptionIDHIERARCHICAL_IDParameter to configure the output mode (nested or truncated clusters).static elki.utilities.optionhandling.OptionIDNOSIMPLIFY_IDDisable the simplification that puts points into merge clusters.(package private) booleansimplifyProduce a simpler result by adding single points directly into the merge cluster.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(elki.utilities.optionhandling.parameterization.Parameterization config)
-
-
-
Field Detail
-
HIERARCHICAL_ID
public static final elki.utilities.optionhandling.OptionID HIERARCHICAL_ID
Parameter to configure the output mode (nested or truncated clusters).
-
NOSIMPLIFY_ID
public static final elki.utilities.optionhandling.OptionID NOSIMPLIFY_ID
Disable the simplification that puts points into merge clusters.
-
hierarchical
boolean hierarchical
Flag to generate a hierarchical result.
-
algorithm
HierarchicalClusteringAlgorithm algorithm
The hierarchical clustering algorithm to run.
-
simplify
boolean simplify
Produce a simpler result by adding single points directly into the merge cluster.
-
-