AW: [R] Question for layout function

TEMPL Matthias Matthias.Templ at statistik.gv.at
Thu Apr 21 16:04:39 CEST 2005


> Dear people,
> 
> Is there a way to generate three graphs having 2x2 layout, 

?

> but left half is merged ? Like below.
> 
>  ---------
> |    |    |
> |    |____|
> |    |    |
> |    |    |
>  ---------

Something like this?

l <- layout(matrix(c(1,2,3,2),ncol=2,byrow=TRUE))
layout.show(3)

d <- runif(50)
hist(d)
boxplot(d)
plot(density(d))

Best,
Matthias

> 
> Two times of layout function with par(new=FALSE) do not accept it.
> 
> 
> Shawn Lee
> 
> 
> -- 
> The information contained in this communication and any\ >...{{dropped}}




More information about the R-help mailing list