pyclustering.cluster.agglomerative.type_link Class Reference

Enumerator of types of link between clusters. More...

+ Inheritance diagram for pyclustering.cluster.agglomerative.type_link:
+ Collaboration diagram for pyclustering.cluster.agglomerative.type_link:

Static Public Attributes

int SINGLE_LINK = 0
 Distance between the two nearest objects in clusters is considered as a link, so-called SLINK method (the single-link clustering method). More...
 
int COMPLETE_LINK = 1
 Distance between the farthest objects in clusters is considered as a link, so-called CLINK method (the complete-link clustering method). More...
 
int AVERAGE_LINK = 2
 Average distance between objects in clusters is considered as a link. More...
 
int CENTROID_LINK = 3
 Distance between centers of clusters is considered as a link. More...
 

Detailed Description

Enumerator of types of link between clusters.

Definition at line 39 of file agglomerative.py.

Member Data Documentation

◆ AVERAGE_LINK

int pyclustering.cluster.agglomerative.type_link.AVERAGE_LINK = 2
static

Average distance between objects in clusters is considered as a link.

Definition at line 52 of file agglomerative.py.

◆ CENTROID_LINK

int pyclustering.cluster.agglomerative.type_link.CENTROID_LINK = 3
static

Distance between centers of clusters is considered as a link.

Definition at line 55 of file agglomerative.py.

◆ COMPLETE_LINK

int pyclustering.cluster.agglomerative.type_link.COMPLETE_LINK = 1
static

Distance between the farthest objects in clusters is considered as a link, so-called CLINK method (the complete-link clustering method).

Definition at line 49 of file agglomerative.py.

◆ SINGLE_LINK

int pyclustering.cluster.agglomerative.type_link.SINGLE_LINK = 0
static

Distance between the two nearest objects in clusters is considered as a link, so-called SLINK method (the single-link clustering method).

Definition at line 46 of file agglomerative.py.


The documentation for this class was generated from the following file: