タグ付けされた質問 「yaxis」

6
2つの異なるy軸でプロットするにはどうすればよいですか?
Rで2つの散布図を重ね合わせて、ポイントの各セットが独自の(異なる)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)
122 r  plot  yaxis 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.