Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.77 KB

README.md

File metadata and controls

44 lines (32 loc) · 1.77 KB

Hierarchical Clustering

Build status Coverage Status Pharo version Pharo version Pharo version Pharo version License

Description

Hierarchical Clustering algorithms for Pharo

Installation

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')

How to depend on it?

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.