0
我想在樹狀圖的底部着色樹狀圖的節點 - 但是在單獨的行中 下面鏈接中的最後一個樹狀圖顯示節點作爲有色 - 然而,當它的一個大數據集,一條線變得很油膩 Label and color leaf dendrogram in r 那麼是可以爲每個彩色組分別行?如何將樹狀圖的節點着色爲R中的單獨行
我想在樹狀圖的底部着色樹狀圖的節點 - 但是在單獨的行中 下面鏈接中的最後一個樹狀圖顯示節點作爲有色 - 然而,當它的一個大數據集,一條線變得很油膩 Label and color leaf dendrogram in r 那麼是可以爲每個彩色組分別行?如何將樹狀圖的節點着色爲R中的單獨行
是的。您想使用dendextend軟件包中的功能colored_bars
。請看下面的例子(從dendextend vignette)
library(dendextend)
dend15 <- c(1:5) %>% dist %>% hclust(method = "average") %>% as.dendrogram
is_odd <- ifelse(labels(dend15) %% 2, 2,3)
is_345 <- ifelse(labels(dend15) > 2, 3,4)
is_12 <- ifelse(labels(dend15) <= 2, 3,4)
k_3 <- cutree(dend15,k = 3, order_clusters_as_data = FALSE)
# The FALSE above makes sure we get the clusters in the order of the
# dendrogram, and not in that of the original data. It is like:
# cutree(dend15, k = 3)[order.dendrogram(dend15)]
the_bars <- cbind(is_odd, is_345, is_12, k_3)
the_bars[the_bars==2] <- 8
dend15 %>% plot
colored_bars(colors = the_bars, dend = dend15)