hierarchical-clustering-0.4.5: Fast algorithms for single, average/UPGMA and complete linkage clustering.

Safe HaskellSafe-Inferred
LanguageHaskell98

Data.Clustering.Hierarchical.Internal.Types

Synopsis

Documentation

data Dendrogram a Source

Data structure for storing hierarchical clusters. The distance between clusters is stored on the branches. Distances between leafs are the distances between the elements on those leafs, while distances between branches are defined by the linkage used (see Linkage).

Constructors

Leaf a

The leaf contains the item a itself.

Branch !Distance (Dendrogram a) (Dendrogram a)

Each branch connects two clusters/dendrograms that are d distance apart.

Instances

Functor Dendrogram

Does not recalculate the distances!

Foldable Dendrogram 
Traversable Dendrogram 
Eq a => Eq (Dendrogram a) 
Ord a => Ord (Dendrogram a) 
Show a => Show (Dendrogram a) 

data Linkage Source

The linkage type determines how the distance between clusters will be calculated. These are the linkage types currently available on this library.

Constructors

SingleLinkage

The distance between two clusters a and b is the minimum distance between an element of a and an element of b.

CompleteLinkage

The distance between two clusters a and b is the maximum distance between an element of a and an element of b.

CLINK

The same as CompleteLinkage, but using the CLINK algorithm. It's much faster however doesn't always give the best complete linkage dendrogram.

UPGMA

Unweighted Pair Group Method with Arithmetic mean, also called "average linkage". The distance between two clusters a and b is the arithmetic average between the distances of all elements in a to all elements in b.

FakeAverageLinkage

This method is usually wrongly called "average linkage". The distance between cluster a = a1 U a2 (that is, cluster a was formed by the linkage of clusters a1 and a2) and an old cluster b is (d(a1,b) + d(a2,b)) / 2. So when clustering two elements to create a cluster, this method is the same as UPGMA. However, in general when joining two clusters this method assigns equal weights to a1 and a2, while UPGMA assigns weights proportional to the number of elements in each cluster. See, for example:

type Distance = Double Source

A distance is simply a synonym of Double for efficiency.