ggplot:如何将标记颜色保留在图例中但隐藏文本颜色?

时间:2018-12-13 12:34:57

标签: r ggplot2 ggrepel

我希望更改一些但不是全部标签的颜色,以使它们在填充的图中突出。我使用以下方法实现了这一点:

df <- data.frame("x"=1:10, "y"=1:10, "dir"=rep(c("a", "b"), 5))

library(ggplot2)
library(ggrepel)
ggplot(data=df, aes(x, y, color=dir)) +
  geom_point(show.legend=TRUE) +
  geom_text_repel(data=df[1:5, ], 
                  aes(x=x, y=y, 
                      color=factor(df$dir[1:5], labels=c("text a", "text b")), 
                      label=dir), 
                  size=2.5, force=15, show.legend=FALSE) + 
  scale_colour_manual(values=c("salmon", "black", "salmon", "darkturquoise"))

如何在图例中隐藏标签配色方案的同时做到这一点(即在下面的图中删除文本a和b)? show.legend=FALSE似乎无效,我想保留重点说明。

enter image description here

在此示例中,我使用的是geom_text_repel,但我想它与geom_text相同。

谢谢!

1 个答案:

答案 0 :(得分:2)

您也可以通过将最后一行替换为

来手动指定休息时间
scale_colour_manual(breaks = c("a", "b"), values = c("salmon", "black", "salmon", "darkturquoise"))

enter image description here