#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

#2155 in Algorithms

Download history 146/week @ 2024-03-13 546/week @ 2024-03-20 174/week @ 2024-03-27 197/week @ 2024-04-03 214/week @ 2024-04-10 113/week @ 2024-04-17 297/week @ 2024-04-24 634/week @ 2024-05-01 220/week @ 2024-05-08 220/week @ 2024-05-15 174/week @ 2024-05-22 270/week @ 2024-05-29 167/week @ 2024-06-05 126/week @ 2024-06-12 124/week @ 2024-06-19 114/week @ 2024-06-26

577 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