Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 8 days 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 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-11T10:47:42.000Z (12 months ago)
- Last Synced: 2024-10-29T20:32:31.221Z (about 2 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
[![Build status](https://github.com/pharo-ai/hierarchical-clustering/workflows/CI/badge.svg)](https://github.com/pharo-ai/hierarchical-clustering/actions/workflows/test.yml)
[![Coverage Status](https://coveralls.io/repos/github/pharo-ai/hierarchical-clustering/badge.svg?branch=master)](https://coveralls.io/github/pharo-ai/hierarchical-clustering?branch=master)
[![Pharo version](https://img.shields.io/badge/Pharo-9-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo version](https://img.shields.io/badge/Pharo-10-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo version](https://img.shields.io/badge/Pharo-11-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo version](https://img.shields.io/badge/Pharo-12-%23aac9ff.svg)](https://pharo.org/download)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](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.