gpt4 book ai didi

r - 如何将 ≤ 或 ≠ 等符号或符号添加到 R 中的图例或轴

转载 作者:行者123 更新时间:2023-12-04 04:51:54 24 4
gpt4 key购买 nike

我想添加符号 在 R 中的一个图例中

..."≤1",col="gray"...

但是当我运行脚本时,它会创建和 = 符号,就像我输入的一样
..."=1",col="gray"...

有没有办法告诉 R 我想要那个 ≤ 符号?

并帮助任何有类似问题的人;是否有可用于告诉 R 如何添加异常字符的命令列表?

最佳答案

感谢@agstudy 为我指明了正确的方向,进行了一些调整,但最终做到了:

   legend(...expression(""<="1.0"),col="gray"...)

更多符号可以在使用 ?plotmath 中找到( see here ) 并使用 expression() 实现

下面是一个例子:

enter image description here
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")

关于r - 如何将 ≤ 或 ≠ 等符号或符号添加到 R 中的图例或轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17319090/

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