Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Hierarchical clustering in JavaScript

License

NotificationsYou must be signed in to change notification settings

mljs/hclust

Repository files navigation

NPM versionbuild statusTest coveragenpm download

Hierarchical clustering algorithms in JavaScript.

Installation

npm i ml-hclust

Usage

AGNES

const{ agnes}=require('ml-hclust');consttree=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 installnpm test

Authors

License

MIT


[8]ページ先頭

©2009-2025 Movatter.jp