rasbt / python-machine-learning-book

The "Python Machine Learning (1st edition)" book code repository and info resource
MIT License
12.18k stars 4.39k forks source link

Missing code in chapter 11 #38

Closed austinwang0307 closed 7 years ago

austinwang0307 commented 7 years ago

Hi, below code is from the book but missing in the cell In[17] of ch11.ipynb.

row_clusters = linkage(df.values, method='complete', metric='euclidean')

capture

rasbt commented 7 years ago

Thanks for the note, haven't noticed that! Yeah, without that line, the output may be quite misleading since it was supposed to show that the two approaches are equivalent. Just added it! Thanks