# To do
From c12b867db55a707bcfb258ad44bc925c6d745c3f Mon Sep 17 00:00:00 2001 From: Sothea <62893090+hassothea@users.noreply.github.com> Date: Wed, 6 Nov 2024 13:21:22 +0700 Subject: [PATCH] Update TP4_Clustering.html --- TPs/TP4_Clustering.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/TPs/TP4_Clustering.html b/TPs/TP4_Clustering.html index 4b5dd9e..a623b2f 100644 --- a/TPs/TP4_Clustering.html +++ b/TPs/TP4_Clustering.html @@ -166,9 +166,9 @@
Unlike Kmeans
algrithm, Hirachical clustering
or hcluster
does not require a prior number of clusters. It iteratively merges (agglomerative or bottom up approach) into less and less clusters starting from each points being a cluster on its own, or separate the data point (divisive or top-down approach) to create more and more clusters starting from one clsuter containing all data points.
a. Apply Hirachical cluster on the previously simulated dataset.
+Unlike Kmeans
algrithm, Hierarchical clustering
or hcluster
does not require a prior number of clusters. It iteratively merges (agglomerative or bottom up approach) into less and less clusters starting from each points being a cluster on its own, or separate the data point (divisive or top-down approach) to create more and more clusters starting from one clsuter containing all data points.
a. Apply Hierarchical cluster on the previously simulated dataset.
# To do