I am trying to plot 3 dendrograms, 2 on top and one on the bottom. But the only way I figured out in doing this:
fig, axes = plt.subplots(2, 2, figsize=(22, 14))
dn1 = hc.dendrogram(wardLink, ax=axes[0, 0])
dn2 = hc.dendrogram(singleLink, ax=axes[0, 1])
dn3 = hc.dendrogram(completeLink, ax=axes[1, 0])
Gives me a fourth blank graph on the bottom right. Is there a way to plot only 3 graphs?