#clustering #cluster #data-science

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

#2381 in Algorithms

Download history 232/week @ 2024-11-16 94/week @ 2024-11-23 175/week @ 2024-11-30 364/week @ 2024-12-07 240/week @ 2024-12-14 19/week @ 2024-12-21 6/week @ 2024-12-28 279/week @ 2025-01-04 224/week @ 2025-01-11 225/week @ 2025-01-18 181/week @ 2025-01-25 321/week @ 2025-02-01 209/week @ 2025-02-08 322/week @ 2025-02-15 230/week @ 2025-02-22 218/week @ 2025-03-01

1,042 downloads per month

MIT/Apache

40KB
734 lines

cogset

Build Status

A cluster

Generic implementations of clustering algorithms.

Documentation, crates.io.


lib.rs:

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"

Dependencies

~20KB