如何将y标签添加到dendextend
生成的树状图中?例如,这可用于标记"成对距离"。
那么对于水平(ggplot(horiz = T)
(树状图呢?
axis.title.y
必须在主题中指定才能显示文本。例如:
dend %>%
ggplot() +
labs(y = "Pairwise Euclidean Distance") +
theme(axis.title.y = element_text(angle = 90))
对于水平树状图,y
被指定为labs()
,但现在我们需要theme()
中的axis.title.x
。我只能通过指定color = "black"
来显示文本。不知道为什么。
dend %>%
ggplot() +
labs(y = "Pairwise Euclidean Distance") +
theme(axis.title.x = element_text(color = "black"))