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;
 The nearest objects in clusters is considered as a link. More...
 
int COMPLETE_LINK = 1;
 The farthest objects in clusters is considered as a link. 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

The farthest objects in clusters is considered as a link.

Definition at line 49 of file agglomerative.py.

◆ SINGLE_LINK

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

The nearest objects in clusters is considered as a link.

Definition at line 46 of file agglomerative.py.


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