Skip to content

Commit

Permalink
Created hierarchical clustering
Browse files Browse the repository at this point in the history
  • Loading branch information
ozlemkorpe committed Aug 10, 2020
1 parent 875f68b commit f0ebad0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Hierarchical_Clustering_Guide.m
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

0 comments on commit f0ebad0

Please sign in to comment.