5 unstable releases

Uses old Rust 2015

0.3.1 Apr 6, 2023
0.3.0 Apr 4, 2023
0.2.0 Sep 21, 2018
0.1.1 Sep 13, 2018
0.1.0 Sep 13, 2018

#104 in Database implementations

Download history 1/week @ 2023-12-18 5/week @ 2023-12-25 5/week @ 2024-01-08 7/week @ 2024-01-15 76/week @ 2024-01-22 79/week @ 2024-01-29 25/week @ 2024-02-05 49/week @ 2024-02-12 194/week @ 2024-02-19 110/week @ 2024-02-26 160/week @ 2024-03-04 132/week @ 2024-03-11 25/week @ 2024-03-18 22/week @ 2024-03-25 106/week @ 2024-04-01

293 downloads per month

MIT license

11KB
204 lines

dbscan

Build Status

Dependency free implementation of DBSCAN clustering in Rust, generic over the numeric types from Rust's stdlib.


lib.rs:

A Density-Based Algorithm for Discovering Clusters

This algorithm finds all points within eps distance of each other and attempts to cluster them. If there are at least mpt points reachable (within distance eps) from a given point P, then all reachable points are clustered together. The algorithm then attempts to expand the cluster, finding all border points reachable from each point in the cluster

See Ester, Martin, et al. "A density-based algorithm for discovering clusters in large spatial databases with noise." Kdd. Vol. 96. No. 34. 1996. for the original paper

Thanks to the rusty_machine implementation for inspiration

No runtime deps