Uses of Interface
org.apache.commons.math3.stat.clustering.Clusterable
-
Packages that use Clusterable Package Description org.apache.commons.math3.stat.clustering All classes and sub-packages of this package are deprecated. -
-
Uses of Clusterable in org.apache.commons.math3.stat.clustering
Classes in org.apache.commons.math3.stat.clustering with type parameters of type Clusterable Modifier and Type Class Description classCluster<T extends Clusterable<T>>Deprecated.As of 3.2 (to be removed in 4.0), useClusterinsteadclassDBSCANClusterer<T extends Clusterable<T>>Deprecated.As of 3.2 (to be removed in 4.0), useDBSCANClustererinsteadclassKMeansPlusPlusClusterer<T extends Clusterable<T>>Deprecated.As of 3.2 (to be removed in 4.0), useKMeansPlusPlusClustererinsteadClasses in org.apache.commons.math3.stat.clustering that implement Clusterable Modifier and Type Class Description classEuclideanDoublePointDeprecated.As of 3.2 (to be removed in 4.0), useDoublePointinsteadclassEuclideanIntegerPointDeprecated.As of 3.2 (to be removed in 4.0), useDoublePointinsteadFields in org.apache.commons.math3.stat.clustering declared as Clusterable Modifier and Type Field Description private TCluster. centerDeprecated.Center of the cluster.Methods in org.apache.commons.math3.stat.clustering with type parameters of type Clusterable Modifier and Type Method Description private static <T extends Clusterable<T>>
intKMeansPlusPlusClusterer. assignPointsToClusters(java.util.List<Cluster<T>> clusters, java.util.Collection<T> points, int[] assignments)Deprecated.Adds the given points to the closestCluster.private static <T extends Clusterable<T>>
java.util.List<Cluster<T>>KMeansPlusPlusClusterer. chooseInitialCenters(java.util.Collection<T> points, int k, java.util.Random random)Deprecated.Use K-means++ to choose the initial centers.private static <T extends Clusterable<T>>
intKMeansPlusPlusClusterer. getNearestCluster(java.util.Collection<Cluster<T>> clusters, T point)Deprecated.Returns the nearestClusterto the given pointMethod parameters in org.apache.commons.math3.stat.clustering with type arguments of type Clusterable Modifier and Type Method Description private Cluster<T>DBSCANClusterer. expandCluster(Cluster<T> cluster, T point, java.util.List<T> neighbors, java.util.Collection<T> points, java.util.Map<Clusterable<T>,DBSCANClusterer.PointStatus> visited)Deprecated.Expands the cluster to include density-reachable items.
-