Class AbstractCutDendrogram.Par
- java.lang.Object
-
- elki.clustering.hierarchical.extraction.AbstractCutDendrogram.Par
-
- All Implemented Interfaces:
Parameterizer
- Direct Known Subclasses:
CutDendrogramByHeight.Par
,CutDendrogramByNumberOfClusters.Par
- Enclosing class:
- AbstractCutDendrogram
public abstract static class AbstractCutDendrogram.Par extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description (package private) HierarchicalClusteringAlgorithm
algorithm
The hierarchical clustering algorithm to run.(package private) boolean
hierarchical
Flag to generate a hierarchical result.static OptionID
HIERARCHICAL_ID
Parameter to configure the output mode (nested or truncated clusters).static OptionID
NOSIMPLIFY_ID
Disable the simplification that puts points into merge clusters.(package private) boolean
simplify
Produce 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 void
configure(Parameterization config)
Configure the class.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface elki.utilities.optionhandling.Parameterizer
make
-
-
-
-
Field Detail
-
HIERARCHICAL_ID
public static final OptionID HIERARCHICAL_ID
Parameter to configure the output mode (nested or truncated clusters).
-
NOSIMPLIFY_ID
public static final 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.
-
-
Method Detail
-
configure
public void configure(Parameterization config)
Description copied from interface:Parameterizer
Configure 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:
configure
in interfaceParameterizer
- Parameters:
config
- Parameterization
-
-