I have 4 area for testing the data about related distributions ob R project. I plotted all of them but legends are on the medium of the any plots. Have can i shift them to whichever fit area on the plots. For example, right-down? Thanks in advance!
par(mfrow = c(2,2))
plot.legend <-c("weibull","gamma","normal", "lognormal")
denscomp(list(fitweibull,fitgamma,fitnorm,fitlnorm),legendtext = plot.legend)
qqcomp(list(fitweibull,fitgamma,fitnorm,fitlnorm),legendtext = plot.legend)
cdfcomp(list(fitweibull,fitgamma,fitnorm,fitlnorm),legendtext = plot.legend)
ppcomp(list(fitweibull,fitgamma,fitnorm,fitlnorm),legendtext = plot.legend)