r - How can I get the pictures one by one rather than showing them together? -
when entered code plot(x.logis)
, output 4 pictures showing together, looking 1 of them. how plot them separately?
here code:
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 using fitdist function library(fitdistrplus) # fit logistic distribution using mle method x.logis <- fitdist(y, "logis", method="mle") plot(x.logis)
this result of output:
i guess need cdfcomp
, denscomp
, ppcomp
, qqcomp
cdfcomp(x.logis, addlegend=false) denscomp(x.logis, addlegend=false) ppcomp(x.logis, addlegend=false) qqcomp(x.logis, addlegend=false)
Comments
Post a Comment