search for: branches_lwd

Displaying 1 result from an estimated 1 matches for "branches_lwd".

Did you mean: branches_lty
2016 Apr 17
0
use hjust or vjust with dendextend
Following "Introduction to dendextend" from Tal Galili, I applied this code on iris data: ## library(dendextend) library(dendextendRcpp) library(ggplot2) dend2 <- iris[1:30,-5] %>% dist %>% hclust %>% as.dendrogram %>% set("branches_k_color", k=3) %>% set("branches_lwd", rep(1,4)) %>% set("branches_lty", rep(1,6)) %>% set("labels_colors") %>% set("labels_cex", c(1.0,1.0)) %>% set("nodes_pch", 19) %>% set("nodes_col", c("orange", "black", "plum", NA)) ggd2 <...