kmeans library

A Dart library for k-means calculations.

Classes

Clusters
This class describes a clustering.
KMeans
A class for organizing k-means computations with utility methods for finding a good solution.
KMeansInitializers
A collection of methods for calculating initial means.

Typedefs

KMeansInitializer = List<List<double>> Function(List<List<double>> points, List<int> ignoreDims, int k, int seed)
The type of the function used by the k-means algorithm to select the initial set of cluster centers.