如何在每个方面添加注释 [英] How to add annotation on each facet

查看:123
本文介绍了如何在每个方面添加注释的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想给每个构面一个从A到H的字母代码,因为它有八个构面,并在每个构面的左上角绘制每个代码:

I want to give each facet an alpha code, from A to H since there are eight facets, and draw each code on the top-left of each facet:

ggthemr('dust', layout = 'scientific',
        spacing = 1, type = 'inner', line_weight = 0.6,
        )

ptitles <- c('A' = "Total mass (g)", 'B' = "Root mass (g)", 'C' = "Stem mass (g)",
    'D' = "Leaf mass (g)", 'E' = "Number of nodes",
    'F' = "Number of leaves", 'G' = "Total stem length (cm)", 'H' = "RDI")

ggplot(gtr, aes(sediment, value)) +
    geom_boxplot(aes(fill = nitrogen)) +
    geom_text(aes(label = trait, group = trait)) +
    facet_wrap(~trait, scales = "free_y", ncol = 2,
        labeller = as_labeller(ptitles),
        strip.position = "left"
        ) +

theme(legend.position = "bottom",
    legend.title = element_text(size = 12),
    legend.key.size = unit(2, "lines"),
    legend.text = element_text(size = 12),
    strip.text.x = element_text(size = 12, margin = margin(0, 0, 0, 10)),
    strip.text.y = element_text(size = 14),
    strip.placement = "outside",
    axis.title.y = element_text(size = 14),
    axis.title.x = element_text(size = 14),
    axis.text.x = element_text(size = 14),
    panel.spacing.x = unit(0.5, "lines"),
    panel.spacing.y = unit(0.3, "lines"),
    aspect.ratio = 2 / 3
    ) +

xlab("Effects of sediment type and nitrogen deposition") +
ylab(NULL)

我尝试使用geom_text():

I tried to use geom_text():

geom_text(aes(label = trait, group = trait))

(此处变量trait存储从A到H的因数以区分每个方面) 但是它没有像我期望的那样工作:

(Here the variable trait stores factors from A to H to distinguish each facet) But it did not work like what I expected:

有没有一种简单的方法来处理这种事情?

Is there a simple way to such a thing?

更新:

根据 baptiste 的回答,我将我的geom_text()代码从上方更改为下方:

According to baptiste's answer, I changed my geom_text() code above to below:

    geom_text(aes(x = -Inf, y = Inf, label = trait, group = trait),
        size = 5,
        hjust = -0.5,
        vjust = 1.4,
        inherit.aes = FALSE)

inherit.aes = FALSE在这里似乎什么也不做,此参数如何工作?.

inherit.aes = FALSE here seems to do nothing, how does this parameter work?.

现在我的情节看起来不错:

Now my plot looks good:

推荐答案

library(ggplot2)

d <- data.frame(x=rep(1:3, 4), f=rep(letters[1:4], each=3))

labels <- data.frame(f=letters[1:4], label=LETTERS[1:4])
ggplot(d, aes(x,x)) +
  facet_wrap(~f) +
  geom_point() +
  geom_label(data = labels, aes(label=label), 
            x = Inf, y = -Inf, hjust=1, vjust=0,
            inherit.aes = FALSE)

这篇关于如何在每个方面添加注释的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆