我想在 R 中叠加两个散点图,这样每组点都有自己的(不同的) y 轴(即,在图上的位置2和位置4) ,但是这些点看起来叠加在同一个图上。
有可能用 plot
做到这一点吗?
编辑 显示问题的示例代码
# example code for SO question
y1 <- rnorm(10, 100, 20)
y2 <- rnorm(10, 1, 1)
x <- 1:10
# in this plot y2 is plotted on what is clearly an inappropriate scale
plot(y1 ~ x, ylim = c(-1, 150))
points(y2 ~ x, pch = 2)