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.
=
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
2 matches
Mail list logo