R中的二重图

时间:2015-11-28 13:21:15

标签: r plot plotrix

使用 plotrix 包制作双向图。我的尝试看起来像这样

我遇到的问题是它自动不会绘制完整的左轴?为什么是这样?

这个例子在这里是一样的 How can I plot with 2 different y-axes?

怎么可能得到完整的左边y?

1 个答案:

答案 0 :(得分:1)

由于您没有提供您的数据或代码,我以此为例:

library(plotrix)

twoord.plot(2:10, seq(3, 7, by=0.5) + rnorm(9),
            1:15, rev(60:74) + rnorm(15), 
            type= c("l", "l"), xaxt = 'n', yaxt = 'n')

enter image description here