Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
とても簡単な質問があります。
par(mfrow=c(x,y))プロットのグリッドを作成するために定期的に使用します。par(mfrow=c(6,6))グリッドを作成するために実行するとしましょう 。次に、ものを順番にプロットするだけで、10 個のプロットを作成します。次のプロットが次の行で開始されるようにするにはどうすればよいですか (次の列で続行するのではなく)。
par(mfrow=c(x,y))
par(mfrow=c(6,6))
ありがとう!
を使用しlayoutますか?プロットの順序を指定できます。
layout
layout(matrix(c(4,1,3,2),nrow=2)) for (i in 1:4) { plot(seq_len(i)) }