Displaying 2 results from an estimated 2 matches for "mfro".
Did you mean:
mfr
2009 Sep 10
3
Order of multiple plots
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...
2009 Sep 11
3
For sending my R package as part of R-project
...que Dallazuanna <wwwhsd at gmail.com>
Subject: Re: [R] Order of multiple plots
To: legen <legendy at gmail.com>
Cc: r-help at r-project.org
Message-ID:
<da79af330909100433n54fb91abi21ad353117c02eed at mail.gmail.com>
Content-Type: text/plain
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 <legendy at gmail.com> wrote:
>
> Hello a...