Skip to content

Instantly share code, notes, and snippets.

@FranciscusRenatus
Created July 5, 2017 19:36
Show Gist options
  • Save FranciscusRenatus/81b3749915ef8cacfce214fb8f802008 to your computer and use it in GitHub Desktop.
Save FranciscusRenatus/81b3749915ef8cacfce214fb8f802008 to your computer and use it in GitHub Desktop.
# 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