R:如何旋转次级Y轴的标签? {基础}

时间:2016-04-06 18:21:50

标签: r plot label axis2 axis-labels

我已经创建了辅助Y轴,我也使用mtext在那里放置了一个标签。但是,我无法弄清楚如何在面对情节的方式中旋转我的辅助Y标签 - 例如我的 红色Y2标签

我的虚拟数据来自:http://robjhyndman.com/hyndsight/r-graph-with-two-y-axes/

x <- 1:5
y1 <- rnorm(5)
y2 <- rnorm(5,20)
par(mar=c(5,4,4,5)+.1)
plot(x,y1,type="l",col="red")
par(new=TRUE)
plot(x, y2,,type="l",col="blue",xaxt="n",yaxt="n",xlab="",ylab="")
axis(4)
mtext("y2",side=4,line=3)
legend("topleft",col=c("red","blue"),lty=1,legend=c("y1","y2"))

结果:

enter image description here

我已尝试srt = ... las = ...mtext,它们都不起作用。

我没有必要使用int,还有其他简单的解决方案吗?

谢谢!

1 个答案:

答案 0 :(得分:4)

使用text代替mtext

set.seed(1)
x <- 1:5
y1 <- rnorm(5)
y2 <- rnorm(5,20)
par(mar=c(5,4,4,5)+.1)
plot(x,y1,type="l",col="red")
par(new=TRUE)
plot(x, y2,,type="l",col="blue",xaxt="n",yaxt="n",xlab="",ylab="")
axis(4)
text(par("usr")[2]*1.11,mean(par("usr")[3:4]), "y2", srt = -90, xpd = TRUE, pos = 4)
legend("topleft",col=c("red","blue"),lty=1,legend=c("y1","y2"))

via

enter image description here