flame-clustering

Description

Fuzzy clustering by Local Approximation of MEmberships (FLAME) is a data clustering algorithm that defines clusters in the dense parts of a dataset and performs cluster assignment solely based on the neighborhood relationships among objects.

The algorithm was first described in: "FLAME, a novel fuzzy clustering method for the analysis of DNA microarray data", BMC Bioinformatics, 2007, 8:3. Available from: http://www.biomedcentral.com/1471-2105/8/3

This Rust library was adapted from the original C implementation.

Usage Example

The following is a simplified example of how one would use the library to cluster data:

```rust use flame_clustering::DistanceGraph;

let data: Vec = vec![0.12, 0.23, 0.15, 0.19, 100.0]; let (clusters, outliers) = DistanceGraph::build(&data, |a, b| (a - b).abs()) .findsupportingobjects(2, -1.0) .approximatefuzzymemberships(100, 1e-6) .make_clusters(-1.0);

asserteq!(format!("{clusters:?}"), "[[0, 1, 3, 2]]"); asserteq!(format!("{outliers:?}"), "[4]"); ```

The output is a sequence of indexes into the original dataset. In the example above, one cluster was identified that contains the numbers [0.12, 0.15, 0.19, 0.23], and 100.0 was identified as an outlier.

See the library documentation for more information about method parameters.

Compatibility Notes

The Rust implementation differs from the original library in the following ways: