Hierarchical Methods

June 5, 2023

By Admin


Hierarchical Methods

A hierarchical clustering technique works by combining data objects into a tree of clusters. Hierarchical clustering algorithms are either top-down or bottom-up. The quality of an authentic hierarchical clustering method deteriorates from its inability to implement adjustment once a merge or split decision is completed.

A hierarchical clustering method works by grouping objects into a tree of clusters.

Hierarchical clustering methods can be further classified as either agglomerative or divisive, depending on whether the hierarchical decomposition is formed in a buttom-up (merging) or top-down (splitting) fashion.

Hierarchical-Methods

Types of Hierarchical Clustering Methods :

There are two types of hierarchical clustering methods which are as follows:

• Agglomerative Hierarchical Clustering (AHC) :

AHC is a bottom-up clustering method where clusters have sub-clusters, which in turn have sub-clusters, etc. It begins by locating each object in its cluster and then combines these atomic clusters into larger and larger clusters until all the objects are in a single cluster or until it satisfies specific termination condition. Most hierarchical clustering methods are applied to this type. They are distinct only in their definition of between-cluster similarity.

Hierarchical-Methods

• Divisive Hierarchical Clustering (DHC):

DHC is a top-down approach and is less generally used. It works in similar methods to agglomerative clustering but in the opposite direction. This method begins with a single cluster including all objects, and then successively splits resulting clusters until only clusters of single objects remain or until it satisfies specific termination condition, including a desired number of clusters is obtained or the distance Between two closest clusters is above a specific threshold distance.

Interview Questions :

1. What is Hierarchy?

2. Describe the Hierarchial methods in Data Clustering?

3. What is threshold distance?

4. Name some clustering techniques using in data clustering?

5. Difference between AHC and DHC?