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. 40 @details CCORE option can be used to use the pyclustering core - C/C++ shared library for processing that significantly increases performance. 44 # Read sample for clustering from some file 45 sample = read_sample(path_to_sample); 47 # Create instance of ROCK algorithm for cluster analysis 48 # Five clusters should be allocated 49 rock_instance = rock(sample, 1.0, 5); 51 # Run cluster analysis 52 rock_instance.process(); 54 # Obtain results of clustering 55 clusters = rock_instance.get_clusters(); 60 def __init__(self, data, eps, number_clusters, threshold = 0.5, ccore = True):
62 @brief Constructor of clustering algorithm ROCK. 64 @param[in] data (list): Input data - list of points where each point is represented by list of coordinates. 65 @param[in] eps (double): Connectivity radius (similarity threshold), points are neighbors if distance between them is less than connectivity radius. 66 @param[in] number_clusters (uint): Defines number of clusters that should be allocated from the input data set. 67 @param[in] threshold (double): Value that defines degree of normalization that influences on choice of clusters for merging during processing. 68 @param[in] ccore (bool): Defines should be CCORE (C++ pyclustering library) used instead of Python code or not. 81 self.
__ccore = ccore_library.workable();
91 @brief Performs cluster analysis in line with rules of ROCK algorithm. 93 @remark Results of clustering can be obtained using corresponding get methods. 111 if (indexes != [-1, -1]):
120 @brief Returns list of allocated clusters, each cluster contains indexes of objects in list of data. 122 @return (list) List of allocated clusters, each cluster contains indexes of objects in list of data. 133 @brief Returns clustering result representation type that indicate how clusters are encoded. 135 @return (type_encoding) Clustering result representation. 141 return type_encoding.CLUSTER_INDEX_LIST_SEPARATION;
144 def __find_pair_clusters(self, clusters):
146 @brief Returns pair of clusters that are best candidates for merging in line with goodness measure. 147 The pair of clusters for which the above goodness measure is maximum is the best pair of clusters to be merged. 149 @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. 151 @return (list) List that contains two indexes of clusters (from list 'clusters') that should be merged on this step. 152 It can be equals to [-1, -1] when no links between clusters. 156 maximum_goodness = 0.0;
157 cluster_indexes = [-1, -1];
159 for i
in range(0, len(clusters)):
160 for j
in range(i + 1, len(clusters)):
162 if (goodness > maximum_goodness):
163 maximum_goodness = goodness;
164 cluster_indexes = [i, j];
166 return cluster_indexes;
169 def __calculate_links(self, cluster1, cluster2):
171 @brief Returns number of link between two clusters. 172 @details Link between objects (points) exists only if distance between them less than connectivity radius. 174 @param[in] cluster1 (list): The first cluster. 175 @param[in] cluster2 (list): The second cluster. 177 @return (uint) Number of links between two clusters. 183 for index1
in cluster1:
184 for index2
in cluster2:
190 def __create_adjacency_matrix(self):
192 @brief Creates 2D adjacency matrix (list of lists) where each element described existence of link between points (means that points are neighbors). 198 self.
__adjacency_matrix = [ [ 0
for i
in range(size_data) ]
for j
in range(size_data) ];
199 for i
in range(0, size_data):
200 for j
in range(i + 1, size_data):
202 if (distance <= self.
__eps):
208 def __calculate_goodness(self, cluster1, cluster2):
210 @brief Calculates coefficient 'goodness measurement' between two clusters. The coefficient defines level of suitability of clusters for merging. 212 @param[in] cluster1 (list): The first cluster. 213 @param[in] cluster2 (list): The second cluster. 215 @return Goodness measure between two clusters. 222 return (number_links / devider);
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 __init__(self, data, eps, number_clusters, threshold=0.5, ccore=True)
Constructor of clustering algorithm ROCK.