我怎样才能一张一张地获取图片而不是一起显示它们?

How can I get the pictures one by one rather than showing them together?

当我输入代码plot(x.logis)时,输出是四张图片一起显示,但我只找其中一张。我如何分别绘制它们?

这是我的代码:

x<-c(2800,3260,66.5,195,420,840,1380,469,260,50,209.8,370,27,420,157)
y<-log10(x)
# load fitdistrplus package for using fitdist function
library(fitdistrplus)
# fit logistic distribution using MLE method
x.logis <- fitdist(y, "logis", method="mle")
plot(x.logis)

这是输出的结果:

我想你需要的是 cdfcompdenscompppcompqqcomp

cdfcomp(x.logis, addlegend=FALSE)
denscomp(x.logis, addlegend=FALSE)
ppcomp(x.logis, addlegend=FALSE)
qqcomp(x.logis, addlegend=FALSE)