结合R中的情节

时间:2014-03-10 19:42:16

标签: r plot interaction gridextra

我有几个图表,我想将它们组合在一起并为组合图添加标题,但不知何故我无法使用R组合它们(使用RStudio)

  1. 使用plot(resid(lme))合并两个残差图,其中lme是线性混合模型。
  2. 使用interaction.plot(x1,x2,y)合并两个交互图,其中x1和x2是两个独立变量,y是因变量。
  3. 我尝试将这些图存储为变量并使用grid.arrange,但它们不能存储到变量中(只是在绘图区域中生成绘图)。

    > int1 <- interaction.plot(data_pos_10$Day,data_pos_10$Drug,data_pos_10$Tumor.Volume,
    +                  xlab="Day",ylab="Tumor Volume",main="Interaction Plot Batch 10",
    +                  legend=F,
    +                  col=c("red","red","green","black","blue"),
    +                  lwd=2,
    +                  lty=c(1,2,3,4,5))
    > int1
    NULL
    

1 个答案:

答案 0 :(得分:2)

在执行绘图代码之前,请运行par(mcol=c(2,1))以垂直堆叠它们,或par(mcol=c(1,2))将它们水平堆叠。