力R通过原点绘制

时间:2013-08-20 21:44:21

标签: r plot

我在R中有一个简单的情节:

roc = plot(RP.perf@alpha.values[[1]],RP.perf@x.values[[1]],type="l",ylim=c(0,1));

但是想强制图表通过原点。无论如何要做到这一点?我在剧情功能中找不到这个选项。

感谢。

2 个答案:

答案 0 :(得分:1)

只需将原点添加到图中?

roc = plot(c(0, RP.perf@alpha.values[[1]] ),
           c(0, RP.perf@x.values[[1]] ) ,type="l",ylim=c(0,1));

答案 1 :(得分:1)

试试这个:

x <- c(1, 2, 6)
y <- c(4, 6, 8)
xlim <- c(0, 10)
ylim <- c(0, 10)

plot(x, y, xlim=xlim, ylim=ylim, xaxs="i", yaxs="i")