gpt4 book ai didi

r - 在plot(...)和line(...)之后调整图中的R轴吗?

转载 作者:行者123 更新时间:2023-12-04 03:53:58 25 4
gpt4 key购买 nike

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

现在没有通用的y点,您将无法在同一图中看到它们。那么如何调整呢?

最佳答案

在基于Geek on Acid的答案的基础上,这是解决范围问题的一般公式。

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

关于r - 在plot(...)和line(...)之后调整图中的R轴吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8726650/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com