状况:
我有一个ggplot图,我想在其中添加一些文本注释。文本注释应该出现在两行中(可读性和空格),每行包含一些TeX公式:
library(tidyverse)
library(latex2exp)
ggplot(NULL, aes(c(-5,5))) +
geom_area(stat = "function", fun = dnorm, fill = "grey40", xlim = c(-2, 2)) +
annotate(geom = "text", label = TeX(paste("Distribution of $\\bar{x}$","\n","under $H_0$")),
x = -1, y = 0.3,
color = "red")
问题:
换行符不显示。该行不分为两行。
什么不工作:
我已尝试paste(TeX(...))
和parse = T
,但没有成功。
我也尝试了label = expression(paste("distribution of ", bar(x), "\n", "under H0"))
查找here,但没有成功。
问题:
如何将注释(红色文本)分成两行?
答案 0 :(得分:5)
您可以使用atop
和plotmath
表达式(有关其他信息,请参阅?plotmath
):
ggplot(NULL, aes(c(-5,5))) +
geom_area(stat = "function", fun = dnorm, fill = "grey70", xlim = c(-2, 2)) +
annotate(geom = "text", label = expression(atop("Distribution of"~bar(x), "under"~H[0])),
x = -1, y = 0.3,
color = "red") +
theme_classic()
我已经更改了此示例的主题和颜色,以便文本突出。
更新:关于评论,这是一个选项,但您需要使用垂直间距。我们首先构造exp
,plotmath
表达式列表。然后,在annotate
中,我们需要y作为一个值的向量,其长度等于exp
中的元素数量。 parse=TRUE
告诉ggplot将exp
的元素视为plotmath
表达式并解析它们:
exp = list("Distribution of"~bar(x),
"under"~H[0],
hat(mu)~"is the mean")
ggplot(NULL, aes(c(-5,5))) +
geom_area(stat = "function", fun = dnorm, fill = "grey70", xlim = c(-2, 2)) +
annotate(geom = "text", label = exp,
x = -1, y = seq(0.32,0.28,length=3),
size=3, color = "red", parse=TRUE) +
theme_classic()