kmeans-vector

An implementation of the kmeans clustering algorithm based on the vector package

http://github.com/alpmestan/kmeans-vector

Latest on Hackage:0.3.2

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

BSD-3-Clause licensed by Alp Mestanogullari, Ville Tirronen
Maintained by Alp Mestanogullari

Provides a simple (but efficient) implementation of the k-means clustering algorithm. The goal of this algorithm is to, given a set of n-dimensional points, regroup them in k groups, such that each point gets to be in the group to which it is the closest to (using the center of the group).