'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 this helps.
-Nandi


On Sep 9, 11:49 pm, legen <lege...@gmail.com> wrote:
> 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 in 
> context:http://www.nabble.com/Order-of-multiple-plots-tp25377235p25377235.html
> Sent from the R help mailing list archive at Nabble.com.
>
> ______________________________________________
> r-h...@r-project.org mailing listhttps://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guidehttp://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to