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.
我必须使用布局在一个情节中容纳 4 个图像。
Ist : 1 image IInd : 3 images layout(matrix(c(1,1,2,3), 2, 2, byrow = TRUE)) plot(x, y) hist(x,y) plot(x*x,y*y) plot(sqrt(x),sqrt(y))
但输出图像不如预期。我怎样才能解决这个问题?
我希望图像如下所示。
这是您的问题所需的代码:
layout(matrix(c(1,1,1,2,3,4), 2, 3, byrow = TRUE))
它的作用是第一个图像占据整个第一行,如 所示1,第二个、第三个和第四个图像分别占据第二行的第 1、第 2 和第 3 列。所以矩阵中总共有六个单元格(2 * 3,行2个,列3个)。
1