Solved – How to plot a fan (Polar) Dendrogram in R

data visualizationdendrogramr

I'm referring to something like this:

alt text

suggested dataset for showing a solutions:

data(mtcars)
plot(hclust(dist(mtcars)))

Best Answer

In phylogenetics, this is a fan phylogram, so you can convert this to phylo and use ape:

library(ape)
library(cluster) 
data(mtcars)
plot(as.phylo(hclust(dist(mtcars))),type="fan")

Result:
alt text