在`R`中的`ggalt :: geom_dumbbell`中添加传统图例到哑铃图

时间:2017-06-20 12:52:04

标签: r plot ggplot2 data-visualization

如何在ggalt::geom_dumbbell中使用R创建的哑铃图中添加传统图例?

questionanswer带有图表内图例。如何绘制美学以获得侧面/底部点的单独图例?

library(ggalt)

df <- data.frame(trt=LETTERS[1:5], l=c(20, 40, 10, 30, 50), r=c(70, 50, 30, 60, 80))

ggplot(df, aes(y=trt, x=l, xend=r)) + 
  geom_dumbbell(size=3, color="#e3e2e1", 
                colour_x = "red", colour_xend = "blue",
                dot_guide=TRUE, dot_guide_size=0.25) +
  theme_bw()

enter image description here

1 个答案:

答案 0 :(得分:3)

获取图例的一种方法是以长格式添加基于数据集的点图层,将color映射到分组变量。

首先,通过 tidyr 中的gather制作长格式数据集。

df2 = tidyr::gather(df, group, value, -trt)

然后制作绘图,使用长数据集添加新点图层并使用scale_color_manual设置颜色。我将geom_dumbbell特定美学移到了那一层。

ggplot(df, aes(y = trt)) + 
     geom_point(data = df2, aes(x = value, color = group), size = 3) +
     geom_dumbbell(aes(x = l, xend = r), size=3, color="#e3e2e1", 
                   colour_x = "red", colour_xend = "blue",
                   dot_guide=TRUE, dot_guide_size=0.25) +
     theme_bw() +
     scale_color_manual(name = "", values = c("red", "blue") )

enter image description here