Source Of Summary:
Lec.3.D. M. FCDS spring 2024.pdf
Data Mining and Analytics β Lecture 3
1. Introduction to Hierarchical Clustering
Hierarchical clustering groups data objects into a tree-like structure (a dendrogram) where every element finds its perfect spot like a family tree for your data! π¨βπ©βπ§βπ¦π
1.1 What Is It? π€
1.2 Types of Hierarchical Clustering π οΈβ¨
1.2.1 Agglomerative (Bottom-Up) π€β‘οΈ
- Start: Each data point begins in its own cluster (a singleton) π€
- Process: Merge the closest clusters step by step until the whole set $S$ becomes one big cluster! ππͺ
- Fun Fact: Think of it like rolling a snowball that gets bigger and bigger! βοΈβοΈ
1.2.2 Divisive (Top-Down) π°βοΈ
- Start: Begin with the entire set $S$ π
- Process: Recursively split the set into smaller clusters until each cluster contains a single element.
- Note: Itβs like slicing a cake into individual pieces one careful cut at a time! π°βοΈ
2. Agglomerative Clustering Algorithm π€β‘οΈ