#cluster-analysis #data-science #dbscan

cogset

Generic implementations of clustering algorithms. Includes k-means, DBSCAN and OPTICS.

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

#7 in #dbscan

Download history 196/week @ 2025-07-20 306/week @ 2025-07-27 300/week @ 2025-08-03 259/week @ 2025-08-10 327/week @ 2025-08-17 322/week @ 2025-08-24 238/week @ 2025-08-31 399/week @ 2025-09-07 291/week @ 2025-09-14 157/week @ 2025-09-21 320/week @ 2025-09-28 202/week @ 2025-10-05 473/week @ 2025-10-12 552/week @ 2025-10-19 464/week @ 2025-10-26 332/week @ 2025-11-02

1,823 downloads per month

MIT/Apache

40KB
734 lines

Clustering algorithms.

A cluster

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)

Source.

Installation

Add the following to your Cargo.toml file:

[dependencies]
cogset = "0.1"

cogset

Build Status

A cluster

Generic implementations of clustering algorithms.

Documentation, crates.io.

Dependencies

~20KB