我无法正确设置图例的位置,我尝试使用xjust
和ncol
,但它仍然出现在图形的中间。
你能帮它把它对齐到边框吗(左或右我不在乎)?
此外,是否可以在图例中绘制较短的线条?这些看起来太长了。
par(mar=c(5,4,4,5)+.1)
plot(1:109,rnorm(109), type="l",col="blue", lwd=2,
main="Compare signal and std deviation MC3 ch44",
ylab="signal", xlab="locations")
par(new=TRUE)
plot(1:109, rnorm(109), ylab="",xlab="", type="l",
col="red",xaxt="n",yaxt="n", lwd=2)
axis(4)
mtext("std. deviation",side=4,line=3)
legend("topright",col=c("blue", "red"), lwd=2,
legend=c("signal","std dev"), cex=0.85, bty="n", xjust=1)
如注释中所述,重新启动 R 会话并使用
legend("topright",col=c("blue", "red"), lwd=2,
legend=c("signal","std dev"), cex=0.85, bty="n", xjust=1, seg.len=0.5)
解决了我的问题。