Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Case 1: Three Distinct Clusters | K-Means Algorithm
Cluster Analysis in Python
course content

Kursinhalt

Cluster Analysis in Python

Cluster Analysis in Python

1. K-Means Algorithm
2. K-Medoids Algorithm
3. Hierarchical Clustering
4. Spectral Clustering

book
Case 1: Three Distinct Clusters

The last line plot you built was not as clear as it was in the theory block before. As you remember, we should look for the point that has a significant drop before, but not after. Let's remind the plot from the previous task.

Why is the answer here is unclear? Let me show you the values of the total within sum of squares for n 2, 3, 4, and 5.

Number of clustersTotal within sum of squares
2429.45
3105.30
460.76
546.88

The value of metric drops by 75.5% between 2 and 3, by 42.3% between 3 and 4, and by 22.9% between 4 and 5. Further drops are less than 23%. So, both 3 and 4 are suitable variants for the number of clusters. Let's see if the algorithm will confirm our intuitive vision. For ease, let's remind the scatter plot of points.

Aufgabe

Swipe to start coding

  1. Import seaborn library using standard naming convention, and KMeans from sklearn.cluster.
  2. Initialize a KMeans object with 3 clusters. Assign this object to model.
  3. Fit the data to the model.
  4. Predict the closest cluster each point belongs to. Save the result within the 'prediction' column of data.
  5. Create a scatter plot representing the distribution of points ('x' and 'y' columns of data on eponymous axes), having each point colored with respect to a predicted cluster.

Lösung

Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 4
toggle bottom row

book
Case 1: Three Distinct Clusters

The last line plot you built was not as clear as it was in the theory block before. As you remember, we should look for the point that has a significant drop before, but not after. Let's remind the plot from the previous task.

Why is the answer here is unclear? Let me show you the values of the total within sum of squares for n 2, 3, 4, and 5.

Number of clustersTotal within sum of squares
2429.45
3105.30
460.76
546.88

The value of metric drops by 75.5% between 2 and 3, by 42.3% between 3 and 4, and by 22.9% between 4 and 5. Further drops are less than 23%. So, both 3 and 4 are suitable variants for the number of clusters. Let's see if the algorithm will confirm our intuitive vision. For ease, let's remind the scatter plot of points.

Aufgabe

Swipe to start coding

  1. Import seaborn library using standard naming convention, and KMeans from sklearn.cluster.
  2. Initialize a KMeans object with 3 clusters. Assign this object to model.
  3. Fit the data to the model.
  4. Predict the closest cluster each point belongs to. Save the result within the 'prediction' column of data.
  5. Create a scatter plot representing the distribution of points ('x' and 'y' columns of data on eponymous axes), having each point colored with respect to a predicted cluster.

Lösung

Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 4
Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
Wir sind enttäuscht, dass etwas schief gelaufen ist. Was ist passiert?
some-alt