Package | Description |
---|---|
org.apache.commons.math3.stat.clustering |
All classes and sub-packages of this package are deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
Cluster<T extends Clusterable<T>>
Deprecated.
As of 3.2 (to be removed in 4.0),
use
Cluster instead |
class |
DBSCANClusterer<T extends Clusterable<T>>
Deprecated.
As of 3.2 (to be removed in 4.0),
use
DBSCANClusterer instead |
class |
KMeansPlusPlusClusterer<T extends Clusterable<T>>
Deprecated.
As of 3.2 (to be removed in 4.0),
use
KMeansPlusPlusClusterer instead |
Modifier and Type | Class and Description |
---|---|
class |
EuclideanDoublePoint
Deprecated.
As of 3.2 (to be removed in 4.0),
use
DoublePoint instead |
class |
EuclideanIntegerPoint
Deprecated.
As of 3.2 (to be removed in 4.0),
use
DoublePoint instead |
Modifier and Type | Field and Description |
---|---|
private T |
Cluster.center
Deprecated.
Center of the cluster.
|
Modifier and Type | Method and Description |
---|---|
private static <T extends Clusterable<T>> |
KMeansPlusPlusClusterer.assignPointsToClusters(java.util.List<Cluster<T>> clusters,
java.util.Collection<T> points,
int[] assignments)
Deprecated.
Adds the given points to the closest
Cluster . |
private static <T extends Clusterable<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>> |
KMeansPlusPlusClusterer.getNearestCluster(java.util.Collection<Cluster<T>> clusters,
T point)
Deprecated.
Returns the nearest
Cluster to the given point |
Modifier and Type | Method and 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.
|