Class AutomaticClusterer
java.lang.Object
org.ojalgo.data.cluster.FeatureBasedClusterer
org.ojalgo.data.cluster.AutomaticClusterer
- All Implemented Interfaces:
ClusteringAlgorithm<Point>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class FeatureBasedClusterer
centroid, cluster, distance, distance, getThreshold, initialiser, isSquared, newAutomatic, newAutomatic, newGreedy, newGreedy, newKMeans, newKMeans, newSpectral, newSpectral, setup
-
Field Details
-
myClusterer
-
-
Constructor Details
-
AutomaticClusterer
AutomaticClusterer(DistanceMeasure measure)
-
-
Method Details
-
cluster
Description copied from interface:ClusteringAlgorithmPartitions the given items into clusters.- Parameters:
input- The items to cluster; must not benull. May be empty.- Returns:
- A list of clusters; each element of the list is a
Set<T>representing one cluster and containing its members. Sets are non-empty and pairwise disjoint; ordering is unspecified.
-