Uses of Class
org.apache.commons.math3.ml.clustering.CentroidCluster
Packages that use CentroidCluster
-
Uses of CentroidCluster in org.apache.commons.math3.ml.clustering
Fields in org.apache.commons.math3.ml.clustering with type parameters of type CentroidClusterModifier and TypeFieldDescriptionprivate List<CentroidCluster<T>> FuzzyKMeansClusterer.clustersThe list of clusters resulting from the last call toFuzzyKMeansClusterer.cluster(Collection).Methods in org.apache.commons.math3.ml.clustering that return types with arguments of type CentroidClusterModifier and TypeMethodDescriptionprivate List<CentroidCluster<T>> KMeansPlusPlusClusterer.chooseInitialCenters(Collection<T> points) Use K-means++ to choose the initial centers.FuzzyKMeansClusterer.cluster(Collection<T> dataPoints) Performs Fuzzy K-Means cluster analysis.KMeansPlusPlusClusterer.cluster(Collection<T> points) Runs the K-means++ clustering algorithm.MultiKMeansPlusPlusClusterer.cluster(Collection<T> points) Runs the K-means++ clustering algorithm.FuzzyKMeansClusterer.getClusters()Returns the list of clusters resulting from the last call toFuzzyKMeansClusterer.cluster(Collection).Method parameters in org.apache.commons.math3.ml.clustering with type arguments of type CentroidClusterModifier and TypeMethodDescriptionprivate intKMeansPlusPlusClusterer.assignPointsToClusters(List<CentroidCluster<T>> clusters, Collection<T> points, int[] assignments) Adds the given points to the closestCluster.private TKMeansPlusPlusClusterer.getFarthestPoint(Collection<CentroidCluster<T>> clusters) Get the point farthest to its cluster centerprivate intKMeansPlusPlusClusterer.getNearestCluster(Collection<CentroidCluster<T>> clusters, T point) Returns the nearestClusterto the given pointprivate TKMeansPlusPlusClusterer.getPointFromLargestVarianceCluster(Collection<CentroidCluster<T>> clusters) Get a random point from theClusterwith the largest distance variance.