pharo-ai / hierarchical-clustering

Hierarchical Clustering algorithms for Pharo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Hierarchical Clustering algorithms for Pharo

License:MIT License


Languages

Language:Smalltalk 100.0%