text()在R图中显示带有下标的希腊字母

时间:2016-12-18 22:09:57

标签: r plot

我想知道如何写出这封信" sigma "出现在希腊语中,下标" m "在以下 R代码的 text()部分?:

curve(dnorm(x,175.3,.961),160,190,type="l")

sigmam <- dnorm(177.4,175.3,.961)/ dnorm(177.4,176,4)

text(165,.285,paste("sigmam", "=", round(1/sigmam,digits=2)))

1 个答案:

答案 0 :(得分:5)

查看?plotmath了解如何将这类事物拼凑在一起的相关示例。例如,这里有一个改编自&#34; ##如何结合&#34;数学&#34;和数字变量:&#34;

curve(dnorm(x,175.3,.961),160,190,type="l")
sigmam <- dnorm(177.4,175.3,.961)/ dnorm(177.4,176,4)

text(165,.285, bquote(Sigma[m] == .(round(sigmam,2))))

enter image description here