This crate provides an easy and efficient way to perform kmeans clustering on arbitrary data. The algo is initialized with kmeans++ for best performance of the clustering.
There are three goals to this implementation of the kmeans algorithm:
```rust use clustering::*;
let nsamples = 20000; // # of samples in the example let ndimensions = 200; // # of dimensions in each sample let k = 4; // # of clusters in the result let maxiter = 100; // max number of iterations before the clustering forcefully stops
// Generate some random data
let mut samples: Vec
// actually perform the clustering let clustering = kmeans(k, &samples, max_iter);
println!("membership: {:?}", clustering.membership); println!("centroids : {:?}", clustering.centroids); ```