From d379381458eaab09b88c418a491cb894913a179e Mon Sep 17 00:00:00 2001 From: sophiekamuf <36629628+sophiekamuf@users.noreply.github.com> Date: Sat, 11 May 2019 04:56:16 +0200 Subject: [PATCH] Add "K-means clustering description" (#24684) --- guide/english/machine-learning/unsupervised-learning/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guide/english/machine-learning/unsupervised-learning/index.md b/guide/english/machine-learning/unsupervised-learning/index.md index 5d1b1c095b..4637afd33e 100644 --- a/guide/english/machine-learning/unsupervised-learning/index.md +++ b/guide/english/machine-learning/unsupervised-learning/index.md @@ -29,6 +29,7 @@ Types: Clustering: Is used for exploratory data analysis to find hidden patterns or grouping in data. Take a collection of 1,000,000 different genes, and find a way to automatically group these genes into groups that are somehow similar or related by different variables, such as lifespan, location, roles, and so on. +K-Means Clustering: The goal of the algorithm is to cluster the data in k-groups. It iteratively assigns data points to their nearest cluster, while keeping their centroids as small as possible. Approaches to unsupervised learning include: