Created
July 3, 2017 17:33
-
-
Save FranciscusRenatus/916ef83f0ce66c4b2c6ed7cd7274c15a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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