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