1

我已将两个数据集组合成一个图表,我想将相应的pch符号直接添加到轴标签中。现在,我知道这里这里text()给出了使用代替xlabandylab和 Hershey 矢量字体(而不是引用 apch=16等)的解决方案,但符号看起来有点古怪。有没有人有更“全面”的解决方案?

thinkoholic.com 的可重现示例,

par(mar=c(5,5,2,5))

# create data and plot circles
x <- seq(0,5,0.5)

y <- seq(0,5,0.5)
plot(x,y, xlab="", ylab="")

#create random data and add bullets (pch=19)
x <- rnorm(20,2.5)
y <- rnorm(20,2.5)
points(x,y, pch=19)

#add y axis on right side
axis (side = 4)

#create text with symbols
text(-1,2.5,"\\#H0850 y1 axis text", vfont=c("sans serif","plain"), cex=1.25, adj=0.5, srt=90, xpd=TRUE)
text(6,2.5,"\\#H0902 y2 axis text", vfont=c("sans serif","plain"), cex=1.25, adj=0.5, srt=90, xpd=TRUE)
text(2.5,-1,"x axis text", vfont=c("sans serif","plain"), cex=1.25, adj=0.5, srt=0, xpd=TRUE)
4

2 回答 2

3

如果你坚持这样做:

par(mar=c(5,5,2,5), xpd=TRUE)

x <- seq(0,5,0.5)
y <- seq(0,5,0.5)
plot(x,y, xlab="", ylab="")


text(-1,2.5,"y axis text", cex=1.25, adj=0, srt=90)
points(-1,2.4)
于 2013-06-11T12:29:25.927 回答
0

这应该有效:

mtext(paste0("your label text", " (",  intToUtf8(9679), ")"), side = 2, line=2.5)
于 2016-10-10T18:20:01.477 回答