Re: [R] par(mfrow=c(3,4)) problem

2018-05-30 Thread Martin Maechler
> Sarah Goslee > on Wed, 30 May 2018 05:03:56 -0400 writes: > Hi, > You're mixing base plot and ggplot2 grid graphics, which as you've > discovered doesn't work. > Here's av strategy that does: > https://cran.r-project.org/web/packages/egg/vignettes/Ecosystem.html

Re: [R] par(mfrow=c(3,4)) problem

2018-05-30 Thread Sarah Goslee
Hi, You're mixing base plot and ggplot2 grid graphics, which as you've discovered doesn't work. Here's av strategy that does: https://cran.r-project.org/web/packages/egg/vignettes/Ecosystem.html This vignette has a good overview, well as info specific to that package. Sarah On Wed, May 30, 20

Re: [R] par(mfrow=c(3,4)) problem

2018-05-30 Thread PIKAL Petr
ing disclaimer: https://www.precheza.cz/en/01-disclaimer/ > -Original Message- > From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of greg holly > Sent: Wednesday, May 30, 2018 10:43 AM > To: r-help mailing list > Subject: [R] par(mfrow=c(3,4)) problem > > Hi a

Re: [R] par(mfrow=c(3,4)) problem

2018-05-30 Thread Alex Zarebski
You might find the patchwork library helpful (plot_layout function) https://github.com/thomasp85/patchwork I'm not sure if it's on CRAN but you can devtools::github_install it. Cheers, Alex On Wed, May 30, 2018 at 6:42 PM, greg holly wrote: > Hi all; > > I need to put 12 different plot2 into

[R] par(mfrow=c(3,4)) problem

2018-05-30 Thread greg holly
Hi all; I need to put 12 different plot2 into the same matrix. So my array for the matrix will be par(mfrow=c(3,4)). I am running ggplot2 to produce my 12 plots. For some reason, par(mfrow=c(3,4)) did not turn out 3*4 matrix. my basic R codes for each plot is par(mfrow=c(3,4)) library(ggplot2) p

Re: [R] par(mfrow) for heatmap plots

2017-07-23 Thread Jeff Newmiller
The answer is "don't do that" because that function abuses par. Use lattice or ggplot2 with grid graphics to plot multiple heatmaps. https://stackoverflow.com/questions/15114347/to-display-two-heatmaps-in-same-pdf-side-by-side-in-r -- Sent from my phone. Please excuse my brevity. On July 23, 20

Re: [R] par(mfrow) for heatmap plots

2017-07-23 Thread Michael Dewey
Dear Brian If you look at ?heatmap and the second paragraph of the Note you will see that it is behaving according to its documentation. On 23/07/2017 13:11, Brian Smith wrote: Hi, I was trying to use par(mfrow) to put 4 heatmaps on a single page. However, I get one plot per page and not one

[R] par(mfrow) for heatmap plots

2017-07-23 Thread Brian Smith
Hi, I was trying to use par(mfrow) to put 4 heatmaps on a single page. However, I get one plot per page and not one page with 4 plots. What should I modify? Test code is given below: test = matrix(rnorm(60), 20, 3) pdf(file='test.pdf',width=10,height=8) par(mfrow=c(2,2)) heatmap(test) heatmap(te

Re: [R] par(mfrow)

2014-04-04 Thread Franklin Bretschneider
Hi, re: > I have some problems using the par function: I want to split the screen into > 2 rows and 4 col and I type " par(mfrow=c(2, 4)) " but when I do that, > instead of setting a graphical parameter, it creates a white Quarz. > I'm currently using the R base version for Mac Os, 3.0.3 . >

[R] par(mfrow)

2014-04-04 Thread Emanuele Belli
Hi, I have some problems using the par function: I want to split the screen into 2 rows and 4 col and I type " par(mfrow=c(2, 4)) " but when I do that, instead of setting a graphical parameter, it creates a white Quarz. I'm currently using the R base version for Mac Os, 3.0.3 . Could you give me

Re: [R] par(mfrow=c(1,3)) and postscript(file=)

2013-05-24 Thread Sarah Goslee
Probably you need to put the par() function after the postscript() function - the par changes apply only to the current device, and there's no postscript device until you start it. But since you haven't provided an example, it's impossible to be certain. Sarah On Friday, May 24, 2013, Öhagen Pat

[R] par(mfrow=c(1,3)) and postscript(file=)

2013-05-24 Thread Öhagen Patrik
I am printing three graphs into the same page using par(mfrow=c(1,3)) and the I want to save the file as postscript format using postscript() When input the postscript file into the manuscript the three graphs appear on separate pages. What have I missed and done wrong? Thank you in advan

Re: [R] par(mfrow) or split.screen with climatol roseavent plot?

2012-07-31 Thread David Winsemius
On Jul 31, 2012, at 7:21 AM, Jan Näs wrote: Hi I trying to add a wind rose as a plot together with other plots. Im unsing the roseavent function from the climatol package. Ive tried par(mfrow=c(2,2)) but when plotting the windrose: rosavent(windfreq_rose,4,3,ang=-3*pi/16,main="Windrose") it sk

[R] par(mfrow) or split.screen with climatol roseavent plot?

2012-07-31 Thread Jan Näs
Hi I trying to add a wind rose as a plot together with other plots. Im unsing the roseavent function from the climatol package. Ive tried par(mfrow=c(2,2)) but when plotting the windrose: rosavent(windfreq_rose,4,3,ang=-3*pi/16,main="Windrose") it skips one position, and when plotting the next one

Re: [R] par mfrow in "function" problem

2010-11-10 Thread Joshua Wiley
Dear Casper, This is because you create two histograms, the first with the direct call to hist(), the second at: h = hist(x). That is also why even though you set the xlab and main to be blank in your first one,the histogram with the normal line added actually was titled. Normally, hist() just o

[R] par mfrow in "function" problem

2010-11-10 Thread casperyc
Hi all, I defined the following # myhist=function(x){ hist(x,xlab="",main="") h=hist(x) xfit=seq(min(x),max(x),length=100) yfit=dnorm(xfit,mean(x),sd=sd(x)) yfit=yfit*diff(h$mids[1:2])*length(x) lines(xfit, yfit, col="bl

Re: [R] 'par mfrow' and not filling horizontally

2010-09-09 Thread Ivan Calandra
Hi! I think you've got already all useful solutions, but I usually just change mfrow to c(2,2). There is then free space left, but I usually edit my graphs in Illustrator anyway. Ivan Le 9/8/2010 21:01, (Ted Harding) a écrit : > Greetings, Folks. > I'd appreciate being shown the way out of t

Re: [R] 'par mfrow' and not filling horizontally

2010-09-08 Thread jim holtman
remove your asp=1 and try again to see if that is what you want. On Wed, Sep 8, 2010 at 3:01 PM, Ted Harding wrote: > Greetings, Folks. > I'd appreciate being shown the way out of this one! > I've been round the documentation in ever-drecreasing > circles, and along other paths, without stumbling

Re: [R] 'par mfrow' and not filling horizontally

2010-09-08 Thread Ted Harding
On 08-Sep-10 19:16:15, Bert Gunter wrote: > Ted: > ?layout > > Is this close to what you want? > > layout(matrix(1:2, nrow=2),wid=1,heigh=c(1,1), resp= TRUE) > set.seed(54321) > X0 <- rnorm(50) ; Y0 <- rnorm(50) > plot(X0,Y0,pch="+",col="blue",xlim=c(-3,3),ylim=c(-3,3), > xlab="X",ylab="Y",ma

Re: [R] 'par mfrow' and not filling horizontally

2010-09-08 Thread Bert Gunter
Ted: ?layout Is this close to what you want? layout(matrix(1:2, nrow=2),wid=1,heigh=c(1,1), resp= TRUE) set.seed(54321) X0 <- rnorm(50) ; Y0 <- rnorm(50) plot(X0,Y0,pch="+",col="blue",xlim=c(-3,3),ylim=c(-3,3), xlab="X",ylab="Y",main="My Plot",asp=1) plot(X0,Y0,pch="+",col="blue",xlim=c(

Re: [R] 'par mfrow' and not filling horizontally

2010-09-08 Thread Marc Schwartz
On Sep 8, 2010, at 2:01 PM, Ted Harding wrote: > Greetings, Folks. > I'd appreciate being shown the way out of this one! > I've been round the documentation in ever-drecreasing > circles, and along other paths, without stumbling on > the answer. > > The background to the question can be exemplifi

Re: [R] 'par mfrow' and not filling horizontally

2010-09-08 Thread William Dunlap
, 2010 12:01 PM > To: r-h...@stat.math.ethz.ch > Subject: [R] 'par mfrow' and not filling horizontally > > Greetings, Folks. > I'd appreciate being shown the way out of this one! > I've been round the documentation in ever-drecreasing > circles, and along other pa

Re: [R] 'par mfrow' and not filling horizontally

2010-09-08 Thread Greg Snow
On Behalf Of Ted Harding > Sent: Wednesday, September 08, 2010 1:01 PM > To: r-h...@stat.math.ethz.ch > Subject: [R] 'par mfrow' and not filling horizontally > > Greetings, Folks. > I'd appreciate being shown the way out of this one! > I've been round the docu

[R] 'par mfrow' and not filling horizontally

2010-09-08 Thread Ted Harding
Greetings, Folks. I'd appreciate being shown the way out of this one! I've been round the documentation in ever-drecreasing circles, and along other paths, without stumbling on the answer. The background to the question can be exemplified by the example (no graphics window open to start with):

[R] par(mfrow = ) resets par('cex'), not reduces it

2008-12-03 Thread [EMAIL PROTECTED]
Hello group! I use R 2.8.0 . I've just found out that par(mfrow =) *resets* par ('cex'), not reduces it as documented. To reproduce: par(cex = 0.5) par(mfrow = c(2, 2)) print(par('cex')) It outputs 0.83, not 0.415 as expected. Particularly such a behavior makes plot.acf effectively ignore par (

Re: [R] par(mfrow=c(2,4))

2008-10-20 Thread stephen sefick
reproducible code please. On Mon, Oct 20, 2008 at 3:22 PM, phoebe kong <[EMAIL PROTECTED]> wrote: > Hi All, > > I'm going to draw 8 plots in one page. I want the plots to be arranged > in two rows, each row has 4 plots. So, I set the it par(mfrow=c(2,4)). > > However, there might be too many plots

[R] par(mfrow=c(2,4))

2008-10-20 Thread phoebe kong
Hi All, I'm going to draw 8 plots in one page. I want the plots to be arranged in two rows, each row has 4 plots. So, I set the it par(mfrow=c(2,4)). However, there might be too many plots in a page, all the 8 plots were drawn in triangular shape, which makes the x-y coordinate scale not in same

Re: [R] par(mfrow=c(4,2)) vs. lattice

2008-06-10 Thread Gabor Grothendieck
mfrow is for classic graphics and when the graphs are unrelated. lattice is for grid graphics and typically when the panels are related such as being the same plot but conditioned on different factor levels. These are typical uses only as one can write arbitary panels with lattice and produce rel

Re: [R] par(mfrow=c(4,2)) vs. lattice

2008-06-10 Thread Bert Gunter
AM To: r-help@r-project.org Subject: [R] par(mfrow=c(4,2)) vs. lattice I have had good sucess with the par(mfrow=c(#,#)) for formating graphs and they look good to me. I have seen a lot of use of the lattice package and thought I would go fishing on the list for y'all's comments. Is th

[R] par(mfrow=c(4,2)) vs. lattice

2008-06-10 Thread stephen sefick
I have had good sucess with the par(mfrow=c(#,#)) for formating graphs and they look good to me. I have seen a lot of use of the lattice package and thought I would go fishing on the list for y'all's comments. Is there a time when lattice would be easier more appropriate for certain graphics over