gpt4 book ai didi

r - mfrow(r 中的多个图形)

转载 作者:行者123 更新时间:2023-12-04 12:35:21 27 4
gpt4 key购买 nike

出于某种原因,我无法使用 mfrow 函数绘制多个图形。它只是替换了不在其旁边绘制的图形。

代码如下:

mmodel=monthglm(formula=monthcount~1,data=azithro,family=poisson(),
offsetpop=NULL,offsetmonth=TRUE, refmonth=9)


mmodel2=monthglm(formula=monthcount~1,data=levo,family=poisson(),
offsetpop=NULL,offsetmonth=TRUE, refmonth=9)

par(mfrow=c(1,2))
plot(mmodel)
plot(mmodel2)

出于某种原因,第二张图取代了第一张没有绘制在它旁边的图。

最佳答案

您还可以使用 split.screen 并根据需要定义面板。这可能是 plot.monthglm 的创建者的工作方式,并且从未注意到 mfrow 错误。

split.screen(c(2,2))
for(i in 1:4){
screen(i)
plot(mmodel, main=paste("Model", i))
}

split.screen and plot.monthglm

关于r - mfrow(r 中的多个图形),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30376557/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com