Cluster your data with Elixir. This is work in progress, so please use with care.
- k-means
- Implementation of other cluster algorithms, e.g., DBSCAN
- Code optimization
- Improvement of documentation
Install by adding kurasuta
to your list of dependencies in mix.exs
:
def deps do
[{:kurasuta, "~> 0.1.0"}]
end
Then, update your dependencies with mix deps.get
.
Currently only the k-means algorithm is available. For a working example with a two-dimensional list as data, see KurasutaTest
.
Licensed under MIT, see LICENSE
.