gpt4 book ai didi

r - 将希腊字符和星号 (*) 添加到轴标题

转载 作者:行者123 更新时间:2023-12-04 11:38:18 27 4
gpt4 key购买 nike

我想在 R 中的直方图的 x 轴上添加一个希腊字符。我可以单独或用帽子写希腊字符,但问题是我需要这个字符与帽子和星号()一起出现。更具体地说,我想要帽子(phi^)之类的东西。这是我所做的:

x = rnorm(1000)
hist( x, nclass = 100, cex.lab=1.5, xlab = expression(hat(phi^*)),
ylab="Frequency", main="", cex.axis=1.5 )

谢谢。

最佳答案

如何使用 ggplot2 而不是 base R。然后您可以使用 latex2exp::TeX 在坐标区标签中使用(一些)LaTeX 表达式。

set.seed(2018)
x = rnorm(1000)

library(ggplot2)
library(latex2exp)

ggplot(data.frame(x = x), aes(x)) +
geom_histogram(bins = 100) +
theme_minimal() +
xlab(TeX("$\\widehat{\\phi^*}$"))

enter image description here

您需要使用额外的反斜杠来转义反斜杠,并将数学表达式包裹在 $ 分隔符中(就像在常规 LaTeX 内联数学中一样)。我使用了 \widehat{},但您也可以改用 hat{}

关于r - 将希腊字符和星号 (*) 添加到轴标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52113015/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com