如何适应多个地块的大小?

时间:2019-02-24 09:51:33

标签: r plot size

如何根据以下图的x轴长度调整其大小?

enter image description here

图的宽度应指x轴各自截面的长度。所有图的高度都应该相同。

1 个答案:

答案 0 :(得分:1)

您想要的功能是基本图形功能help("layout")

首先,我将组成一个数据集,因为您尚未发布数据集。我不会画回归线,而只是点。

数据创建代码。

fun <- function(X, A) {
  apply(X, 1, function(.x){
    xx <- seq(.x[1], .x[2], length.out = 100)
    y <- A[1]*xx + A[2] + rnorm(100, 0, 25)
    list(xx, y)
  })}

Coef <- matrix(c(0.24, 0.54, 
                 0.75, 0.54,
                 0.33, 2.17,
                 0.29, 3.3,
                 0.29, 4.41), byrow = TRUE, ncol = 2)

X <- matrix(c(0.1, 0.49,
              0.5, 2.49,
              2.5, 3.9,
              4.0, 5.9,
              6.0, 12.0), byrow = TRUE, ncol = 2)

set.seed(1234)
res <- fun(X, Coef)

问题。

使用从第一到第五的顺序定义每个图的布局矩阵。 X范围给出的宽度。

layout_mat <- matrix(c(1, 2, 3, 4, 5), 1, 5, byrow = TRUE)
w <- apply(X, 1, diff)
l <- layout(layout_mat, widths = w)
layout.show(l)

现在为轴注释腾出一些空间,保存默认的图形参数,并绘制5个图形。

om <- par(mar = c(3, 0.1, 0.1, 0.1),
          oma = c(3, 2, 0.1, 0.1))
for(i in 1:5) plot(res[[i]][[1]], res[[i]][[2]])
par(om)

enter image description here