We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a84dc9b commit 37e9c2eCopy full SHA for 37e9c2e
examples/maximal_clustering.rs
@@ -26,7 +26,11 @@ fn main() {
26
27
// Customize clustering settings for DBSCAN
28
let settings = ClusteringSettings::default()
29
- .with_algorithm(ClusteringAlgorithmName::KMeans)
+ .with_algorithms(vec![
30
+ ClusteringAlgorithmName::KMeans,
31
+ ClusteringAlgorithmName::Agglomerative,
32
+ ClusteringAlgorithmName::DBSCAN,
33
+ ])
34
.with_k(3)
35
.verbose(true);
36
0 commit comments