Hierarchical Clustering in Data Mining
Hierarchical Clustering in Data Mining
1. Determine the similarity between individuals and all other clusters. (Find
proximity matrix).
2. Consider each data point as an individual cluster.
3. Combine similar clusters.
4. Recalculate the proximity matrix for each cluster.
5. Repeat step 3 and step 4 until you get a single cluster.
Let’s understand this concept with the help of graphical representation using a
dendrogram.
With the help of given demonstration, we can understand that how the actual
algorithm work. Here no calculation has been done below all the proximity among the
clusters are assumed.
Consider each alphabet (P, Q, R, S, T, V) as an individual cluster and find the distance
between the individual cluster from all other clusters.
Step 2:
Now, merge the comparable clusters in a single cluster. Let’s say cluster Q and Cluster
R are similar to each other so that we can merge them in the second step. Finally, we
get the clusters [ (P), (QR), (ST), (V)]
Step 3:
Here, we recalculate the proximity as per the algorithm and combine the two closest
clusters [(ST), (V)] together to form new clusters as [(P), (QR), (STV)]
Step 4:
Repeat the same process. The clusters STV and PQ are comparable and combined
together to form a new cluster. Now we have [(P), (QRSTV)].
Step 5:
Finally, the remaining two clusters are merged together to form a single cluster
[(PQRSTV)]
Divisive Hierarchical Clustering
Divisive hierarchical clustering is exactly the opposite of Agglomerative Hierarchical
clustering. In Divisive Hierarchical clustering, all the data points are considered an
individual cluster, and in every iteration, the data points that are not similar are
separated from the cluster. The separated data points are treated as an individual
cluster. Finally, we are left with N clusters.
OPTICS
OPTICS stands for Ordering Points To Identify the Clustering Structure. It gives a
significant order of database with respect to its density-based clustering structure. The
order of the cluster comprises information equivalent to the density-based clustering
related to a long range of parameter settings. OPTICS methods are beneficial for both
automatic and interactive cluster analysis, including determining an intrinsic clustering
structure.
DENCLUE