Skip to content

pharo-ai/hierarchical-clustering

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.