[R] Two graphs, align vertically

2007-08-23 Thread squall44
Hi, I created an ecdf and a boxplot. Now I would like to place the ecdf above the boxplot. But I only managed to align them horizontally. I used this code: #--- par(mfrow=c(1,2), mar=c(5,3,3,1)) # ecdf library(plotrix) x =

Re: [R] Two graphs, align vertically

2007-08-23 Thread Uwe Ligges
squall44 wrote: Hi, I created an ecdf and a boxplot. Now I would like to place the ecdf above the boxplot. But I only managed to align them horizontally. I used this code: #--- par(mfrow=c(1,2), mar=c(5,3,3,1)) As in the message before: Please

Re: [R] Two graphs, align vertically

2007-08-23 Thread squall44
Thanks for you answer Uwe, I have the code par(mfrow=c(1,2), mar=c(5,3,3,1)) not from the help, but from an example from the R Graph Gallery. I think the help is rather useless for beginners (like me), because it does not explain anything and only gives the commands. Anyway, I always try first