我想将符号≤添加到R中的图例中,如
..."≤1",col="gray"...
但是当我运行脚本时,它会创建和=符号,就像我输入了
一样..."=1",col="gray"...
有没有办法告诉我我想要那个≤符号?
并帮助有类似问题的人;是否有一个命令列表可用于告诉R如何添加不寻常的字符?
答案 0 :(得分:3)
感谢@agstudy指出我正确的方向,做了一些调整但是到了那里:
legend(...expression(""<="1.0"),col="gray"...)
使用?plotmath
(see here)可以找到更多符号,并使用expression()
实现
以下是一个例子:
x <- 0:64/64
y <- sin(3*pi*x)
plot(x, y, type= "l", col= "blue",
main= expression("How to add the symbol"<="to a legend"))
points(x, y, pch= 1, bg= "white")
legend(.4,1, expression(""<= "1.0"), pch= 1, pt.bg= "white", lty= 1, col= "blue")