https://github.com/pharo-ai/hierarchical-clustering
Hierarchical Clustering algorithms for Pharo
https://github.com/pharo-ai/hierarchical-clustering
agglomerative-clustering dendrogram hierarchical-clustering pharo pharo-smalltalk similarity-matrix
Last synced: 9 months ago
JSON representation
Hierarchical Clustering algorithms for Pharo
- Host: GitHub
- URL: https://github.com/pharo-ai/hierarchical-clustering
- Owner: pharo-ai
- License: mit
- Created: 2020-11-25T14:47:46.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-11T10:47:42.000Z (almost 2 years ago)
- Last Synced: 2025-02-09T16:12:27.555Z (10 months ago)
- Topics: agglomerative-clustering, dendrogram, hierarchical-clustering, pharo, pharo-smalltalk, similarity-matrix
- Language: Smalltalk
- Homepage:
- Size: 63.5 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hierarchical Clustering
[](https://github.com/pharo-ai/hierarchical-clustering/actions/workflows/test.yml)
[](https://coveralls.io/github/pharo-ai/hierarchical-clustering?branch=master)
[](https://pharo.org/download)
[](https://pharo.org/download)
[](https://pharo.org/download)
[](https://pharo.org/download)
[](https://raw.githubusercontent.com/pharo-ai/hierarchical-clustering/master/LICENSE)
# Description
Hierarchical Clustering algorithms for Pharo
# Installation
```smalltalk
Metacello new
baseline: 'AIHierarchicalClustering';
repository: 'github://pharo-ai/hierarchical-clustering/src';
load.
```
If you want to load the Roassal visualization support:
```smalltalk
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:
```Smalltalk
spec
baseline: 'AIHierarchicalClustering'
with: [ spec repository: 'github://pharo-ai/hierarchical-clustering/src' ].
```
If you are new to baselines and Metacello, check out the [Baselines](https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/Baselines.md) tutorial on Pharo Wiki.