average(y)
The upper triangular of the distance matrix. The result of pdist
is returned in this form.
A linkage matrix containing the hierarchical clustering. See linkage for more information on its structure.
Perform average/UPGMA linkage on a condensed distance matrix.
linkage
scipy.spatial.distance.pdist
from scipy.cluster.hierarchy import average, fcluster
from scipy.spatial.distance import pdist
X = [[0, 0], [0, 1], [1, 0],
[0, 4], [0, 3], [1, 4],
[4, 0], [3, 0], [4, 1],
[4, 4], [3, 4], [4, 3]]
y = pdist(X)
Z = average(y)
Z
fcluster(Z, 0.9, criterion='distance')
fcluster(Z, 1.5, criterion='distance')
fcluster(Z, 4, criterion='distance')
fcluster(Z, 6, criterion='distance')
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them