最佳答案
我想用下面的代码在图的最后一个方面注释一些文本:
library(ggplot2)
p <- ggplot(mtcars, aes(mpg, wt)) + geom_point()
p <- p + facet_grid(. ~ cyl)
p <- p + annotate("text", label = "Test", size = 4, x = 15, y = 5)
print(p)
但是这段代码在每个方面都注释了文本。我如何才能得到注释的文本上只有一个方面?