-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
875f68b
commit f0ebad0
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
%%%------------- Hierarchical Clustering | ||
% Step 1: Consider each data point as a single cluster. | ||
% Step 2: Combine the two closest clusters and make them one cluster. | ||
% Step 3: Repeatedly combine clusters until there is only one cluster. | ||
|
||
% Approaches for finding closest clusters | ||
% Single Link: Min distance | ||
% Complete Link: Max distance | ||
% Average: Average distance | ||
|
||
% Types of Hierachical Clustering : Agglomerative, Divisive |