@hackage clustering0.4.1
High performance clustering algorithms
Categories
License
MIT
Maintainer
kai@kzhang.org
Links
Versions
Installation
Dependencies (9)
- base >=4.0 && <5.0
- binary
- containers
- matrices >=0.5.0
- mwc-random
- parallel Show all…
Dependents (4)
@hackage/hierarchical-spectral-clustering, @hackage/bioinformatics-toolkit, @hackage/acme-everything, @hackage/spectral-clustering
Following clutering methods are included in this library:
1 Agglomerative hierarchical clustering. Complete linkage O(n^2), Single linkage O(n^2), Average linkage O(n^2), Weighted linkage O(n^2), Ward's linkage O(n^2).
2 KMeans clustering.