public abstract class KClustererBase extends ClustererBase implements KClusterer
Constructor and Description |
---|
KClustererBase() |
Modifier and Type | Method and Description |
---|---|
abstract 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.
|
List<List<DataPoint>> |
cluster(DataSet dataSet,
int lowK,
int highK)
Performs clustering on the given data set.
|
List<List<DataPoint>> |
cluster(DataSet dataSet,
int lowK,
int highK,
ExecutorService threadpool)
Performs clustering on the given data set.
|
cluster, cluster, createClusterListFromAssignmentArray, getDatapointsFromCluster, supportsWeightedData
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
cluster, cluster, cluster, cluster
public List<List<DataPoint>> cluster(DataSet dataSet, int clusters, ExecutorService threadpool)
KClusterer
cluster
in interface KClusterer
dataSet
- the data points to perform clustering onclusters
- the number of clusters to assumethreadpool
- a source of threads to run taskspublic List<List<DataPoint>> cluster(DataSet dataSet, int clusters)
KClusterer
cluster
in interface KClusterer
dataSet
- the data points to perform clustering onclusters
- the number of clusters to assumepublic List<List<DataPoint>> cluster(DataSet dataSet, int lowK, int highK, ExecutorService threadpool)
KClusterer
cluster
in interface KClusterer
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 taskspublic List<List<DataPoint>> cluster(DataSet dataSet, int lowK, int highK)
KClusterer
cluster
in interface KClusterer
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 searchpublic abstract KClusterer clone()
clone
in interface Clusterer
clone
in interface KClusterer
clone
in class ClustererBase
Copyright © 2017. All rights reserved.