Created
July 5, 2017 19:49
-
-
Save FranciscusRenatus/e1e849ea5517689ab7672c1d474cfdbc 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
# 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