我正在使用theme_minimal()
在 ggplot0.9.3 中找到的具有白色背景的优秀作品。我想将我的情节标题放在情节右上角的自定义位置。在下面的示例中,我知道x
andy
值,但我想知道是否有一种方法可以传递xmax
和ymax
值来确保文本放置在右上角。理想情况下,文本将是正确的。
#example plot
p <- qplot(mpg, wt, data = mtcars, colour = cyl)
p + annotate("text", x = 30, y = 5, label = "Custom Title")
#what I would like
p + annotate("text", y= ymax, x =xmax_or_RightJustified)