ggplot2使用文本颜色作为填充图例

时间:2014-10-01 06:13:13

标签: r ggplot2

我正在使用带有geom_bar图层的ggplot。

library(ggplot2)
library(dplyr)
library(reshape2)

dat <- data.frame(
  A = c(1, 1, 0.5),
  B = c(1.2, 1, 0.6),
  FF = c("F1", "F2", "F3")
  ) %>%
  mutate(Other = max(A,B))
dat.m <- melt(dat)

我想重现我看到的与ggplot默认指南不同的因子注释。我不希望fill审美在面板右侧的图例中,文本与每种填充颜色并排,我希望文本在面板中着色并显示。

这是默认选项:

ggplot(filter(dat.m, variable != "Other")) + 
  geom_bar(aes(x = variable, y = value, fill=FF),
           stat="identity")

enter image description here

这就是我模仿我追求的风格所做的:

ggplot() + 
  geom_bar(filter(dat.m, variable != "Other"), 
           mapping = aes(x = variable, y = value, fill = FF), 
           stat="identity") + 
  geom_text(filter(dat.m, variable == "Other"), 
            mapping = aes(x = variable, y = value, col = FF, label=FF),
            position="stack", fontface="bold") +
  guides(fill = FALSE, colour=FALSE, text=FALSE)

enter image description here

一些问题:

  • 图例位置是硬编码的。 (这里是堆栈的max,如果条形高度相似则没问题)。文本可以位于图表背景的右上角吗?
  • 文字居中对齐。使用hjust=0使其左对齐,但文本的左边距位于类别的中间。 (这可以通过解决第一点来解决。)
  • 奖励:如果类别文字标签很长,那么换行符可以很好地&#34;编程?

1 个答案:

答案 0 :(得分:1)

我最终选择annotate()来实现您的目标。您可以这种方式指定文本的颜色。

ggplot(data = filter(dat.m, variable != "Other"), 
       aes(x = variable, y = value, fill = FF)) + 
       geom_bar(stat="identity") + 
       annotate("text", x = 2.55, y = 2.6, label = "F1", color = "#F8766D") +
       annotate("text", x = 2.55, y = 2.7, label = "F2", color = "#00BA38") +
       annotate("text", x = 2.55, y = 2.8, label = "F3", color = "#619CFF") +
       theme(legend.position="none")

enter image description here