Class: Ai4r::Clusterers::CompleteLinkage

Inherits:
SingleLinkage show all
Defined in:
lib/ai4r/clusterers/complete_linkage.rb

Overview

Implementation of a Hierarchical clusterer with complete linkage (Everitt et al., 2001 ; Jain and Dubes, 1988 ; Sorensen, 1948 ). Hierarchical clusterer create one cluster per element, and then progressively merge clusters, until the required number of clusters is reached. With complete linkage, the distance between two clusters is computed as the maximum distance between elements of each cluster.

D(cx, (ci U cj) = max(D(cx, ci), D(cx, cj))

Instance Attribute Summary

Attributes inherited from SingleLinkage

#clusters, #data_set, #number_of_clusters

Instance Method Summary collapse

Methods inherited from SingleLinkage

#initialize

Methods included from Data::Parameterizable

#get_parameters, included, #set_parameters

Constructor Details

This class inherits a constructor from Ai4r::Clusterers::SingleLinkage

Instance Method Details

#build(data_set, number_of_clusters) ⇒ Object

Build a new clusterer, using data examples found in data_set. Items will be clustered in “number_of_clusters” different clusters.



37
38
39
# File 'lib/ai4r/clusterers/complete_linkage.rb', line 37

def build(data_set, number_of_clusters)
  super
end

#eval(data_item) ⇒ Object

Classifies the given data item, returning the cluster index it belongs to (0-based).



43
44
45
# File 'lib/ai4r/clusterers/complete_linkage.rb', line 43

def eval(data_item)
  super
end