Uses of Class
org.hipparchus.clustering.Cluster
-
Packages that use Cluster Package Description org.hipparchus.clustering Clustering algorithms.org.hipparchus.clustering.evaluation Cluster evaluation methods.org.hipparchus.samples Various examples. -
-
Uses of Cluster in org.hipparchus.clustering
Subclasses of Cluster in org.hipparchus.clustering Modifier and Type Class Description class
CentroidCluster<T extends Clusterable>
A Cluster used by centroid-based clustering algorithms.Methods in org.hipparchus.clustering that return types with arguments of type Cluster Modifier and Type Method Description abstract List<? extends Cluster<T>>
Clusterer. cluster(Collection<T> points)
Perform a cluster analysis on the given set ofClusterable
instances.List<Cluster<T>>
DBSCANClusterer. cluster(Collection<T> points)
Performs DBSCAN cluster analysis. -
Uses of Cluster in org.hipparchus.clustering.evaluation
Methods in org.hipparchus.clustering.evaluation with parameters of type Cluster Modifier and Type Method Description protected Clusterable
ClusterEvaluator. centroidOf(Cluster<T> cluster)
Computes the centroid for a cluster.Method parameters in org.hipparchus.clustering.evaluation with type arguments of type Cluster Modifier and Type Method Description abstract double
ClusterEvaluator. score(List<? extends Cluster<T>> clusters)
Computes the evaluation score for the given list of clusters.double
SumOfClusterVariances. score(List<? extends Cluster<T>> clusters)
Computes the evaluation score for the given list of clusters. -
Uses of Cluster in org.hipparchus.samples
Constructor parameters in org.hipparchus.samples with type arguments of type Cluster Constructor Description ClusterPlot(List<? extends Cluster<DoublePoint>> clusters, long duration)
-