3 @brief Cluster analysis algorithm: ROCK 4 @details Implementation based on paper @cite inproceedings::rock::1. 6 @authors Andrei Novikov (pyclustering@yandex.ru) 8 @copyright GNU Public License 10 @cond GNU_PUBLIC_LICENSE 11 PyClustering is free software: you can redistribute it and/or modify 12 it under the terms of the GNU General Public License as published by 13 the Free Software Foundation, either version 3 of the License, or 14 (at your option) any later version. 16 PyClustering is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU General Public License for more details. 21 You should have received a copy of the GNU General Public License 22 along with this program. If not, see <http://www.gnu.org/licenses/>. 32 from pyclustering.core.wrapper
import ccore_library
34 import pyclustering.core.rock_wrapper
as wrapper
39 @brief Class represents clustering algorithm ROCK. 43 from pyclustering.cluster import cluster_visualizer 44 from pyclustering.cluster.rock import rock 45 from pyclustering.samples.definitions import FCPS_SAMPLES 46 from pyclustering.utils import read_sample 48 # Read sample for clustering from file. 49 sample = read_sample(FCPS_SAMPLES.SAMPLE_HEPTA) 51 # Create instance of ROCK algorithm for cluster analysis. Seven clusters should be allocated. 52 rock_instance = rock(sample, 1.0, 7) 54 # Run cluster analysis. 55 rock_instance.process() 57 # Obtain results of clustering. 58 clusters = rock_instance.get_clusters() 60 # Visualize clustering results. 61 visualizer = cluster_visualizer() 62 visualizer.append_clusters(clusters, sample) 68 def __init__(self, data, eps, number_clusters, threshold=0.5, ccore=True):
70 @brief Constructor of clustering algorithm ROCK. 72 @param[in] data (list): Input data - list of points where each point is represented by list of coordinates. 73 @param[in] eps (double): Connectivity radius (similarity threshold), points are neighbors if distance between them is less than connectivity radius. 74 @param[in] number_clusters (uint): Defines number of clusters that should be allocated from the input data set. 75 @param[in] threshold (double): Value that defines degree of normalization that influences on choice of clusters for merging during processing. 76 @param[in] ccore (bool): Defines should be CCORE (C++ pyclustering library) used instead of Python code or not. 89 self.
__ccore = ccore_library.workable()
101 @brief Performs cluster analysis in line with rules of ROCK algorithm. 103 @return (rock) Returns itself (ROCK instance). 121 if indexes != [-1, -1]:
131 @brief Returns list of allocated clusters, each cluster contains indexes of objects in list of data. 133 @return (list) List of allocated clusters, each cluster contains indexes of objects in list of data. 144 @brief Returns clustering result representation type that indicate how clusters are encoded. 146 @return (type_encoding) Clustering result representation. 152 return type_encoding.CLUSTER_INDEX_LIST_SEPARATION
155 def __find_pair_clusters(self, clusters):
157 @brief Returns pair of clusters that are best candidates for merging in line with goodness measure. 158 The pair of clusters for which the above goodness measure is maximum is the best pair of clusters to be merged. 160 @param[in] clusters (list): List of clusters that have been allocated during processing, each cluster is represented by list of indexes of points from the input data set. 162 @return (list) List that contains two indexes of clusters (from list 'clusters') that should be merged on this step. 163 It can be equals to [-1, -1] when no links between clusters. 167 maximum_goodness = 0.0
168 cluster_indexes = [-1, -1]
170 for i
in range(0, len(clusters)):
171 for j
in range(i + 1, len(clusters)):
173 if goodness > maximum_goodness:
174 maximum_goodness = goodness
175 cluster_indexes = [i, j]
177 return cluster_indexes
180 def __calculate_links(self, cluster1, cluster2):
182 @brief Returns number of link between two clusters. 183 @details Link between objects (points) exists only if distance between them less than connectivity radius. 185 @param[in] cluster1 (list): The first cluster. 186 @param[in] cluster2 (list): The second cluster. 188 @return (uint) Number of links between two clusters. 194 for index1
in cluster1:
195 for index2
in cluster2:
201 def __create_adjacency_matrix(self):
203 @brief Creates 2D adjacency matrix (list of lists) where each element described existence of link between points (means that points are neighbors). 210 for i
in range(0, size_data):
211 for j
in range(i + 1, size_data):
213 if (distance <= self.
__eps):
219 def __calculate_goodness(self, cluster1, cluster2):
221 @brief Calculates coefficient 'goodness measurement' between two clusters. The coefficient defines level of suitability of clusters for merging. 223 @param[in] cluster1 (list): The first cluster. 224 @param[in] cluster2 (list): The second cluster. 226 @return Goodness measure between two clusters. 233 return number_links / devider
236 def __verify_arguments(self):
238 @brief Verify input parameters for the algorithm and throw exception in case of incorrectness. 242 raise ValueError(
"Input data is empty (size: '%d')." % len(self.
__pointer_data))
245 raise ValueError(
"Connectivity radius (current value: '%d') should be greater or equal to 0." % self.
__eps)
248 raise ValueError(
"Threshold (current value: '%d') should be in range (0, 1)." % self.
__threshold)
251 raise ValueError(
"Amount of clusters (current value: '%d') should be greater than 0." %
def get_cluster_encoding(self)
Returns clustering result representation type that indicate how clusters are encoded.
Class represents clustering algorithm ROCK.
Utils that are used by modules of pyclustering.
Module for representing clustering results.
def process(self)
Performs cluster analysis in line with rules of ROCK algorithm.
def __calculate_goodness(self, cluster1, cluster2)
Calculates coefficient 'goodness measurement' between two clusters.
def __find_pair_clusters(self, clusters)
Returns pair of clusters that are best candidates for merging in line with goodness measure...
def __calculate_links(self, cluster1, cluster2)
Returns number of link between two clusters.
def __create_adjacency_matrix(self)
Creates 2D adjacency matrix (list of lists) where each element described existence of link between po...
def get_clusters(self)
Returns list of allocated clusters, each cluster contains indexes of objects in list of data...
def __verify_arguments(self)
Verify input parameters for the algorithm and throw exception in case of incorrectness.
def __init__(self, data, eps, number_clusters, threshold=0.5, ccore=True)
Constructor of clustering algorithm ROCK.