7

我无法正确设置图例的位置,我尝试过使用xjustncol但它仍然出现在图形的中间。

你能帮它对齐边界(我不在乎左边或右边)吗?

此外,是否可以在图例中绘制较短的线条?这些看起来太长了。

 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)
4

1 回答 1

6

正如评论中指出的重新启动 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)

解决了我的问题。

于 2013-10-14T08:33:10.940 回答