R中的柔性对角线图

时间:2012-03-12 05:20:47

标签: r plot line diagonal

我们如何绘制对角线(从左下角到顶部) 右手角), 在任何给定的坐标范围?

例如

> plot(c(-2,3), c(-1,5), type = "n", xlab="x", ylab="y", asp = 1)

> plot(c(0,1000), c(0,334), type = "n", xlab="x", ylab="y", asp = 1)

我尝试使用以下内容但是失败了:

> abline(0,1,col="red")

1 个答案:

答案 0 :(得分:9)

当前绘图区域的限制在par()$usr

lines( par()$usr[1:2], par()$usr[3:4] )