Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
14 lines
703 B
Text
14 lines
703 B
Text
This library provides Python functions for hierarchical clustering. It generates
|
|
hierarchical clusters from distance matrices or from vector data.
|
|
|
|
Part of this module is intended to replace the functions (linkage, single,
|
|
complete, average, weighted, centroid, median, ward) in the module
|
|
scipy.cluster.hierarchy with the same functionality but much faster algorithms.
|
|
Moreover, the function linkage_vector provides memory-efficient clustering for
|
|
vector data.
|
|
|
|
The interface is very similar to MATLAB's Statistics Toolbox API to make code
|
|
easier to port from MATLAB to Python/NumPy. The core implementation of this
|
|
library is in C++ for efficiency.
|
|
|
|
See also: https://github.com/dmuellner/fastcluster
|