- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What are 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.
The merging of clusters is based on the distance among clusters. The broadly used measures for the distance between clusters are as follows, where mi is the mean for cluster Ci, ni is the number of points in Ci, and |p – p’| is the distance among two points p and p'.
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.
For example, a method known as AGNES (Agglomerative Nesting), uses the single-link techniques and works as follows. Consider there are set of objects located in a rectangle. Originally, each object is placed into a cluster of its own. Then the clusters are combined step-by-step according to some principle including merging the clusters with the minimum Euclidean distance among the closest objects in the cluster.
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.
Divisive methods are not generally accessible and rarely have been used because of the difficulty of creating the right decision of dividing at a high level. DIANA (Divisia Analysis) is one example of the divisive hierarchical clustering method. It works in the opposite order. Originally, all the objects are located in one cluster. Thus the cluster is divided according to some principle, including splitting the clusters according to the maximum Euclidean distance among the closest neighboring objects in the cluster.
- Related Articles
- What are the elements in Hierarchical clustering?
- What is hierarchical routing?
- What is Agglomerative Hierarchical Clustering?
- What is Hierarchical model in DBMS?
- What is a hierarchical naming system?
- What are defender methods or virtual methods in Java?
- What are jQuery string methods?
- What are methods in Java?
- What is Hierarchical architecture in parallel databases?
- what are abstract methods in Java?
- What are different Navigator methods available?
- What are generic methods in Java?
- What are Event Methods in jQuery?
- What are jQuery Event Helper Methods?
- What are vararg methods in Java?
