public interface KClusterer extends Clusterer
Modifier and Type | Method and Description |
---|---|
KClusterer |
clone() |
List<List<DataPoint>> |
cluster(DataSet dataSet,
int clusters)
Performs clustering on the given data set.
|
List<List<DataPoint>> |
cluster(DataSet dataSet,
int clusters,
ExecutorService threadpool)
Performs clustering on the given data set.
|
int[] |
cluster(DataSet dataSet,
int clusters,
ExecutorService threadpool,
int[] designations) |
List<List<DataPoint>> |
cluster(DataSet dataSet,
int lowK,
int highK)
Performs clustering on the given data set.
|
int[] |
cluster(DataSet dataSet,
int clusters,
int[] designations) |
List<List<DataPoint>> |
cluster(DataSet dataSet,
int lowK,
int highK,
ExecutorService threadpool)
Performs clustering on the given data set.
|
int[] |
cluster(DataSet dataSet,
int lowK,
int highK,
ExecutorService threadpool,
int[] designations) |
int[] |
cluster(DataSet dataSet,
int lowK,
int highK,
int[] designations) |
List<List<DataPoint>> cluster(DataSet dataSet, int clusters, ExecutorService threadpool)
dataSet
- the data points to perform clustering onclusters
- the number of clusters to assumethreadpool
- a source of threads to run tasksint[] cluster(DataSet dataSet, int clusters, ExecutorService threadpool, int[] designations)
List<List<DataPoint>> cluster(DataSet dataSet, int clusters)
dataSet
- the data points to perform clustering onclusters
- the number of clusters to assumeint[] cluster(DataSet dataSet, int clusters, int[] designations)
List<List<DataPoint>> cluster(DataSet dataSet, int lowK, int highK, ExecutorService threadpool)
dataSet
- the data points to perform clustering onlowK
- the lower bound, inclusive, of the range to searchhighK
- the upper bound, inclusive, of the range to searchthreadpool
- a source of threads to run tasksint[] cluster(DataSet dataSet, int lowK, int highK, ExecutorService threadpool, int[] designations)
List<List<DataPoint>> cluster(DataSet dataSet, int lowK, int highK)
dataSet
- the data points to perform clustering onlowK
- the lower bound, inclusive, of the range to searchhighK
- the upper bound, inclusive, of the range to searchint[] cluster(DataSet dataSet, int lowK, int highK, int[] designations)
KClusterer clone()
Copyright © 2017. All rights reserved.