有没有办法指定 acustom_annotation
仅适用于 ggplot 的一个方面?
例如,如果我运行以下代码
library(tidyverse)
library(grid)
text_grob=grobTree(textGrob("text",x=0.5, y=0.6, rot=90,
gp=gpar(col="red")))
ggplot(mtcars, aes(x=mpg, y =drat))+
geom_point() +
facet_wrap(~cyl) +
annotation_custom(overrep_grob)
我明白了
我怎样才能只保留最右边的红色“文本”注释而不将“文本”注释添加到前两个方面?注意我不能使用geom_text
或者annotate
因为我需要使用 textGrob 的相对文本定位