#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

#8 in #dbscan

Download history 184/week @ 2025-09-16 173/week @ 2025-09-23 303/week @ 2025-09-30 303/week @ 2025-10-07 365/week @ 2025-10-14 589/week @ 2025-10-21 447/week @ 2025-10-28 370/week @ 2025-11-04 435/week @ 2025-11-11 518/week @ 2025-11-18 287/week @ 2025-11-25 134/week @ 2025-12-02 148/week @ 2025-12-09 147/week @ 2025-12-16 49/week @ 2025-12-23 61/week @ 2025-12-30

449 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