Re: [R] Plot several graphs in the same window

2009-09-01 Thread swertie
Thank you very much it works well. Henrique Dallazuanna wrote: Try this: par(mfrow = c(8,5), mar = c(1, 1, 1, 1)) replicate(40, plot(10)) On Mon, Aug 31, 2009 at 4:39 PM, swertie v_coudr...@voila.fr wrote: Hello, I would like to plot a large number of graphs (43) in a same

[R] Plot several graphs in the same window

2009-08-31 Thread swertie
Hello, I would like to plot a large number of graphs (43) in a same window. I tried wit par(mfrow=c(8,5)), but when I give the code for the plots I receive a error message saying that the margins are to wide. Can someone help me? Is it possible to put so many graphs in a single window? Thank you

Re: [R] Plot several graphs in the same window

2009-08-31 Thread Henrique Dallazuanna
Try this: par(mfrow = c(8,5), mar = c(1, 1, 1, 1)) replicate(40, plot(10)) On Mon, Aug 31, 2009 at 4:39 PM, swertie v_coudr...@voila.fr wrote: Hello, I would like to plot a large number of graphs (43) in a same window. I tried wit par(mfrow=c(8,5)), but when I give the code for the plots I