Hierarchical Clustering algorithms for Pharo
Metacello new
baseline: 'AIHierarchicalClustering';
repository: 'github://pharo-ai/hierarchical-clustering/src';
load.
If you want to load the Roassal visualization support:
Metacello new
baseline: 'AIViz';
repository: 'github://pharo-ai/viz/src';
load: #('AIVizRoassalHC')
If you want to add a dependency on hierarchical-clustering to your project, include the following lines into your baseline method:
spec
baseline: 'AIHierarchicalClustering'
with: [ spec repository: 'github://pharo-ai/hierarchical-clustering/src' ].
If you are new to baselines and Metacello, check out the Baselines tutorial on Pharo Wiki.