Re: [R] Odp: Multiple plots in one subplot

2011-12-16 Thread Walmes Zeviani
You can use a different way of split the plotting area that is by means of layout() function. x <- rnorm(100) M <- matrix(c(rep(1:5, e=2), 6, 7), byrow=TRUE, nrow=2) layout(M) plot(x) hist(x) qqnorm(x) boxplot(x) plot(density(x)) plot(abs(x)) hist(abs(x)) Bests. Walmes. =

[R] Odp: Multiple plots in one subplot

2011-12-16 Thread Petr PIKAL
Hi > > Hi, > I making a figure with six sub-plots using par(mfcol=c(2,3)). In the last > sub-plot I want to have two graphs instead of one. I have tried using > par(fig=x,y,z,v) but this par seems to overwrite the first par. Is there a > simple solution? You can try ?layout or grid graphic. T