Created
July 5, 2017 19:36
-
-
Save FranciscusRenatus/81b3749915ef8cacfce214fb8f802008 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 dendrogram to find the optimal number of clusters | |
import scipy.cluster.hierarchy as sch | |
dendrogram = sch.dendrogram(sch.linkage(X, method = 'ward')) | |
plt.title('Dendrogram') | |
plt.xlabel('Customers') | |
plt.ylabel('Euclidean distances') | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment