Skip to content

Instantly share code, notes, and snippets.

@FranciscusRenatus
Created July 3, 2017 17:33
Show Gist options
  • Save FranciscusRenatus/916ef83f0ce66c4b2c6ed7cd7274c15a to your computer and use it in GitHub Desktop.
Save FranciscusRenatus/916ef83f0ce66c4b2c6ed7cd7274c15a to your computer and use it in GitHub Desktop.
# Using the elbow method to find the optimal number of clusters
from sklearn.cluster import KMeans
wcss = []
for i in range(1, 11):
kmeans = KMeans(n_clusters = i, init = 'k-means++', random_state = 42)
kmeans.fit(X)
wcss.append(kmeans.inertia_)
plt.plot(range(1, 11), wcss)
plt.title('The Elbow Method')
plt.xlabel('Number of clusters')
plt.ylabel('WCSS')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment