R中的Abline经历多个图

时间:2017-08-09 13:14:18

标签: r plot

我很长时间以来一直是R用户,这是我第一次遇到以下问题,我希望这个网站上有人可以帮助我。

当我使用abline绘制水平或垂直线时,它会遍历我拥有的所有多个图。

Blue abline going through the (2,2) plot page

我通常使用par(mfcol = c(x,u))绘制多个图。 最近,我已经得到了上述所有我设置的多个图表的abline。

我如何返回以便它只是通过指定的情节? 在这种情况下,只需通过(1,1)?

上的图

感谢。

以下是示例代码:

temp_series = runif(50,5,6)
par(mfcol = c(2,2))
plot(temp_series,type="l")
abline(h=mean(temp_series),col=4,lty=3)
abline(h=mean(temp_series)-sd(temp_series),col=2,lty=3)

plot(temp_series,type="l")
segments(y0 = mean(temp_series), y1 = mean(temp_series),
     x0 = 0, x1 = 50, col=4,lty=3)

Segments works but abline somehow goes across the whole plane

0 个答案:

没有答案