twoord plot in R

后端 未结 1 1107
傲寒
傲寒 2020-12-22 04:52

Using the plotrix package to make a twoord plot. My attempts look like this

The problem I have is that it automatically does not plot the full left

相关标签:
1条回答
  • 2020-12-22 05:45

    As you didn't provide your data or your code, I offer this as an example:

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

    0 讨论(0)
提交回复
热议问题