Как я могу добавить color_bars к графику dendextend, где я установил horiz=T
Я понимаю, как добавить цветные столбцы в график dendextend, но когда я установил horiz=T, столбец отображается не на той оси.
Пример из введения в 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(horiz=F)
colored_bars(colors = the_bars, dend = dend15)
Когда я выполняю приведенный выше код, я вижу этот график:
Colored_bars сюжет хороший пример
Тем не менее, когда я печатаю
dend15 %>% plot(horiz=T)
colored_bars(colors = the_bars, dend = dend15)
вот что я вижу:
Можно ли переместить цветные полосы на ось рядом с узлами листьев дерева?
0 ответов
Может быть, этот кусок кода (взять отсюда) может помочь вам:
par(mar = c(4,1,1,12))
plot(dend15, horiz = TRUE)
colored_bars(dend15, colors = the_bars, horiz = TRUE)
Удачи!