Package elki.clustering.hierarchical
Interface HierarchicalClusteringAlgorithm
-
- All Superinterfaces:
Algorithm
- All Known Implementing Classes:
AGNES,Anderberg,CLINK,HACAM,HDBSCANLinearMemory,LinearMemoryNNChain,MedoidLinkage,MiniMax,MiniMaxAnderberg,MiniMaxNNChain,NaiveAgglomerativeHierarchicalClustering4,NNChain,OPTICSToHierarchical,SLINK,SLINKHDBSCANLinearMemory
public interface HierarchicalClusteringAlgorithm extends Algorithm
Interface for hierarchical clustering algorithms.This interface allows the algorithms to be used by, e.g.,
CutDendrogramByNumberOfClustersandCutDendrogramByHeight.- Since:
- 0.6.0
- Author:
- Erich Schubert
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface elki.Algorithm
Algorithm.Utils
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default ClusterMergeHistoryautorun(Database database)Try to auto-run the algorithm on a database by calling a method calledrun, with an optionalDatabasefirst, and with data relations as specified byAlgorithm.getInputTypeRestriction().-
Methods inherited from interface elki.Algorithm
getInputTypeRestriction
-
-
-
-
Method Detail
-
autorun
default ClusterMergeHistory autorun(Database database)
Description copied from interface:AlgorithmTry to auto-run the algorithm on a database by calling a method calledrun, with an optionalDatabasefirst, and with data relations as specified byAlgorithm.getInputTypeRestriction().
-
-