3 unstable releases
Uses old Rust 2015
0.2.0 | Apr 29, 2015 |
---|---|
0.1.1 | Apr 27, 2015 |
0.1.0 | Apr 10, 2015 |
#2155 in Algorithms
577 downloads per month
40KB
734 lines
cogset
Generic implementations of clustering algorithms.
lib.rs
:
Clustering algorithms.
This crate provides generic implementations of clustering
algorithms, allowing them to work with any back-end "point
database" that implements the required operations, e.g. one might
be happy with using the naive collection BruteScan
from this
crate, or go all out and implement a specialised R*-tree for
optimised performance.
Density-based clustering algorithms:
- DBSCAN (
Dbscan
) - OPTICS (
Optics
)
Others:
- k-means (
Kmeans
)
Installation
Add the following to your Cargo.toml
file:
[dependencies]
cogset = "0.1"
Dependencies
~20KB