what do colors mean when plotting dend = shc.dendrogram(shc.linkage(data_scaled, method='ward')) code example
Example: hierarchical clustering dendrogram python example
from scipy.cluster.hierarchy import dendrogram, linkage
from matplotlib import pyplot as plt
linked = linkage(X, 'single')
labelList = range(1, 11)
plt.figure(figsize=(10, 7))
dendrogram(linked,
orientation='top',
labels=labelList,
distance_sort='descending',
show_leaf_counts=True)
plt.show()