Re: [R] Order of multiple plots

2009-09-10 Thread Nandi
'Layout' is the way to go. You can define a layout as: LO <- layout(matrix(c(1, 2, 3, 4), ncol=2)) In your case, you would probably want to use: layout(matrix(c(2, 1), ncol=2)) Then, the first plot will be drawn in space number 2, and then the second plot will be drawn in space number 1. Hope th

Re: [R] Order of multiple plots

2009-09-10 Thread S Ellison
Rather than use par(mfro...) you should probably take a look at the alternative "layout" approach. That allows you to give R a matrix (corresponding to panels in the plot) containing the number of the plot to be placed in each panel. It also allows unequal panel sizes. See ?layout for details.

Re: [R] Order of multiple plots

2009-09-10 Thread Henrique Dallazuanna
I think you can try this: par(mfrow=c(1,2)) plot(1, type = 'n', axes = FALSE, xlab = '', ylab = '') plot(1, type = 'n', axes = FALSE, xlab = '', ylab = '') par(mfg = c(1, 2)) plot(rnorm(10)) On Thu, Sep 10, 2009 at 1:49 AM, legen wrote: > > Hello all, > > I have a problem and need your help. >

[R] Order of multiple plots

2009-09-10 Thread legen
Hello all, I have a problem and need your help. I am going to draw two plots in one row and two columns by using “par(mfrow=c(1,2))”, but I want to first draw the right plot and then draw the left plot. Does anybody can show me how to do it please? Thanks in advance. Legen -- View this message