在绘图(...)和线(...)之后以曲线图调整R轴?

时间:2012-01-04 12:09:32

标签: r plot

t和tt有共同的日子,但估值甚至没有接近,因此它们不会出现在同一个图中。是否有一些命令可以在行开头或行命令后将轴调整为0:10?这样做的一些自动方式如此出现?

t<-structure(list(as.Date.e1.V1....d..m..Y.. = structure(c(15138,
15139, 15140, 15141, 15142, 15145, 15146, 15147, 15148, 15152,
15152), class = "Date"), e1.V2 = c(2.26, 2.82, 2.89, 2.52,
2.19, 2.02, 2.85, 2.99, 2.21, 2.15, 2.22)), .Names = c("as.Date.e1.V1....d..m..Y..",
"e1.V2"), row.names = 3270:3280, class = "data.frame")

tt<-structure(list(as.Date.e2.V1....d..m..Y.. = structure(c(15135,
15138, 15139, 15140, 15141, 15142, 15145, 15146, 15147, 15148,
15152), class = "Date"), e2.V2 = c(11.29, 11.15, 11.25,
11.4, 11.68, 11.08, 9.9, 9.74, 9.46, 9.45, 9.87
)), .Names = c("as.Date.e2.V1....d..m..Y..", "e2.V2"), row.names = 195:205, class = "data.frame")


plot(t)
# How to adjust here the tt so that t and tt can be seen at the same time?
lines(tt)

我确信错误,因为绘图与常见的估值点有关:

> plot(data.frame(tt[1], log(tt[2])), type='l')
> points(data.frame(t[1], log(t[2])+1.5))

enter image description here

现在没有常见的y点,你无法在同一个图中看到它们。那么如何调整呢?

3 个答案:

答案 0 :(得分:8)

以Geek on Acid的答案为基础,这是一个解决范围问题的一般公式。

plot(t,ylim=range(t[2],tt[2]))
lines(tt)

答案 1 :(得分:1)

嗯,如果我的问题是正确的,你只需要在ylim添加plot参数,但这只是琐碎的伙伴:

plot(t,ylim=c(1,15))
lines(tt)

enter image description here

答案 2 :(得分:1)

对P Lapointe的答案的概括

plot(t,ylim=range(min(min(t),min(tt)),max(max(tt),max(t))))
lines(tt)

以防每个系列的第二个值不够大/小。