I have written my own clustering routine and would like to produce a dendrogram. The easiest way to do this would be to use scipy dendrogram function. However, this requires the input to be in the same format that the scipy linkage function produces. I cannot find an example of how the output of this is formatted. I was wondering whether someone out there can enlighten me.
Share
This is from the scipy.cluster.hierarchy.linkage() function documentation, I think it’s a pretty clear description for the output format:
Do you need something more?