Skip to content

Instantly share code, notes, and snippets.

@FranciscusRenatus
Created July 5, 2017 19:49
Show Gist options
  • Save FranciscusRenatus/e1e849ea5517689ab7672c1d474cfdbc to your computer and use it in GitHub Desktop.
Save FranciscusRenatus/e1e849ea5517689ab7672c1d474cfdbc to your computer and use it in GitHub Desktop.
# Fitting Hierarchical Clustering to the dataset
from sklearn.cluster import AgglomerativeClustering
hc = AgglomerativeClustering(n_clusters = 5, affinity = 'euclidean', linkage = 'ward')
y_hc = hc.fit_predict(X)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment