15

如果这是一个简单的问题,请原谅我的无知,但我似乎无法弄清楚如何在情节标题的任何部分下划线。我在用着ggplot2.

我能找到的最好 的方法是手工完成 annotate("segment"),并且我创建了一个玩具图来说明它的方法。

df <- data.frame(x = 1:10, y = 1:10)

rngx <- 0.5 * range(df$x)[2]  # store mid-point of plot based on x-axis value
rngy <- 0.5 * range(df$y)[2]  # stores mid-point of y-axis for use in ggplot

ggplot(df, aes(x = x, y = y)) + 
  geom_point() +
  ggtitle("Oh how I wish for ..." ) +
  ggplot2::annotate("text", x = rngx, y = max(df$y) + 1, label = "underlining!", color = "red") +
  # create underline:
  ggplot2::annotate("segment", x = rngx-0.8, xend = rngx + 0.8, y= 10.1, yend=10.1)

在此处输入图像描述

使用带有基数 R 的 bquote(underline()

与图上节点上方和下方的线有关

使用 plotmath 并提供了一种解决方法,但它没有帮助

4

1 回答 1

17

尝试这个:

ggplot(df, aes(x = x, y = y)) + geom_point() +
  ggtitle(expression(paste("Oh how I wish for ", underline(underlining))))

或者,正如 BondedDust 在评论中指出的那样,您可以paste()完全避免调用,但请注意for

ggplot(df, aes(x = x, y = y)) + geom_point() +
  ggtitle(expression(Oh~how~I~wish~'for'~underline(underlining)))

或者 baptiste 建议的另一种更短的方法,它不使用expression,paste()或许多波浪线:

ggplot(df, aes(x = x, y = y)) + geom_point() +
  ggtitle(~"Oh how I wish for "*underline(underlining))
于 2015-05-26T23:03:55.070 回答