Python으로 배우는 Unsupervised Learning
Benjamin Wilson
Director of Research at lateral.io












samples(점수 배열)과 country_names가 주어짐import matplotlib.pyplot as plt from scipy.cluster.hierarchy import linkage, dendrogrammergings = linkage(samples, method='complete')dendrogram(mergings, labels=country_names, leaf_rotation=90, leaf_font_size=6) plt.show()
Python으로 배우는 Unsupervised Learning