I am using the hclust function via the heatmap.2 function to generate a dendrogram of my data. In the hclust? it says :
In hierarchical cluster displays, a decision is needed at each merge to specify which subtree should go on the left and which on the right....The algorithm used in hclust is to order the subtree so that the tighter cluster is on the left (the last, i.e., most recent, merge of the left subtree is at a lower value than the last merge of the right subtree).
I would like to get a different decision algorithm, in which the decision preserves similarity between a subtree and its 'uncle' subtree - In the sense that If I merged two trees that are 'red' and 'blue', and then did another merge between 'red+blue' to 'blue', then the blue will be next to the blue. This will result in a more pleasing to the eye figure, and also will more clearly show properties of the clustering.
(I know that one would hope that 'blue' would go with 'blue' to begin with, but with high-dimensional data, things are not so simple).
Is there any way to achieve this?