Solution: use the set function with the "labels_cex" parameter from the dendextend package.
# install.packages("dendextend") library(dendextend) dend <- as.dendrogram(hclust(dist(USArrests[1:5,])))

(note that changing the spacing between labels is not currently implemented)
For more information about the package, you can look at your vignette .
source share