gpt4 book ai didi

r - 如何在情节的标题内使用箭头?

转载 作者:行者123 更新时间:2023-12-04 12:01:42 25 4
gpt4 key购买 nike

如何在条形图的标题中使用右箭头?
我尝试了以下方法:

counts <- c(0.2, 0.4)
barplot(counts, main="A → B", horiz=TRUE, col=2:3, xlab="Time", xlim=c(0, 1.0))

在 R 中,图的标题看起来不错,但是当我将图保存到文件时,例如pdf,标题中的右箭头被三个点“...”代替。

我在 Windows 7 下使用 R。

谢谢!

最佳答案

我们可以使用 expression() :

set.seed(1)
d1 <- data.frame(y = rnorm(100), x = rnorm(100))

plot(y ~ x, data = d1,ylab = expression(y %->% x),xlab = expression(x %->% y))

可以在以下位置找到表达式列表: https://stat.ethz.ch/R-manual/R-devel/library/grDevices/html/plotmath.html

关于r - 如何在情节的标题内使用箭头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37148573/

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