3.1.0 • Published 5 years ago
ml-hclust v3.1.0
hclust
Hierarchical clustering algorithms in JavaScript.
Installation
npm i ml-hclust
API Documentation
Usage
AGNES
const { agnes } = require('ml-hclust');
const tree = agnes(data, {
method: 'ward',
});Implemented algorithms
- AGNES (AGglomerative NESting): Continuously merge nodes that have the least dissimilarity.
- DIANA (Divisive ANAlysis): The process starts at the root with all the points as one cluster and recursively splits the higher level clusters to build the dendrogram.
- BIRCH (Balanced Iterative Reducing and Clustering using Hierarchies): Incrementally construct a CF (Clustering Feature) tree, a hierarchical data structure for multiphase clustering
- CURE (Clustering Using REpresentatives):
- CHAMELEON
Test
npm install
npm testAuthors
License
3.1.0
5 years ago
3.0.0
7 years ago
3.0.0-1
7 years ago
3.0.0-0
7 years ago
2.0.3
7 years ago
2.0.2
7 years ago
2.0.1
7 years ago
2.0.0
7 years ago
1.3.0
9 years ago
1.2.1
9 years ago
1.2.0
10 years ago
1.1.2
10 years ago
1.1.1
10 years ago
1.1.0
10 years ago
1.0.1
10 years ago
1.0.0
11 years ago
0.1.0
11 years ago
0.0.0
11 years ago