Re: [R] save plot

2010-08-04 Thread Alain Guillet
?jpeg On 04-Aug-10 14:28, linda.s wrote: Can I make a group of jpeg instead of pdfs? Thanks. Linda On Wed, Aug 4, 2010 at 6:47 AM, John Kane wrote: Yes, ?jpeg --- On Tue, 8/3/10, linda.s wrote: From: linda.s Subject: Re: [R] save plot To: gavin.simp...@ucl.ac.uk Cc: r-help@r

Re: [R] save plot

2010-08-04 Thread linda.s
Can I make a group of jpeg instead of pdfs? Thanks. Linda On Wed, Aug 4, 2010 at 6:47 AM, John Kane wrote: > Yes,  ?jpeg > > --- On Tue, 8/3/10, linda.s wrote: > >> From: linda.s >> Subject: Re: [R] save plot >> To: gavin.simp...@ucl.ac.uk >> Cc: r-hel

Re: [R] save plot

2010-08-04 Thread John Kane
Yes, ?jpeg --- On Tue, 8/3/10, linda.s wrote: > From: linda.s > Subject: Re: [R] save plot > To: gavin.simp...@ucl.ac.uk > Cc: r-help@r-project.org > Received: Tuesday, August 3, 2010, 5:36 PM > > [I presume you addressed this to > Duncan Murdoch for a good reaso

Re: [R] save plot

2010-08-03 Thread linda.s
> [I presume you addressed this to Duncan Murdoch for a good reason???] > > Open a new device before plotting, do your plotting, close the device. > > For example, using a PDF device via pdf(): > > pdf("my_plots.pdf", height = 8, width = 8, pointsize = 10, >    version = "1.4", onefile = TRUE) > fo

Re: [R] save plot

2010-07-19 Thread dbandler
r-project.org Subject: Re: [R] save plot On Sat, 2010-07-17 at 14:52 -0400, linda.s wrote: > > Open a new device before plotting, do your plotting, close the device. > > > > For example, using a PDF device via pdf(): > > > > pdf("my_plots.pdf", height = 8,

Re: [R] save plot

2010-07-17 Thread Gavin Simpson
On Sat, 2010-07-17 at 14:52 -0400, linda.s wrote: > > Open a new device before plotting, do your plotting, close the device. > > > > For example, using a PDF device via pdf(): > > > > pdf("my_plots.pdf", height = 8, width = 8, pointsize = 10, > >version = "1.4", onefile = TRUE) > > for(i in 1:1

Re: [R] save plot

2010-07-17 Thread Uwe Ligges
On 17.07.2010 20:52, linda.s wrote: Open a new device before plotting, do your plotting, close the device. For example, using a PDF device via pdf(): pdf("my_plots.pdf", height = 8, width = 8, pointsize = 10, version = "1.4", onefile = TRUE) for(i in 1:10) { y<- rnorm(100) x<- rno

Re: [R] save plot

2010-07-17 Thread linda.s
> Open a new device before plotting, do your plotting, close the device. > > For example, using a PDF device via pdf(): > > pdf("my_plots.pdf", height = 8, width = 8, pointsize = 10, >    version = "1.4", onefile = TRUE) > for(i in 1:10) { >    y <- rnorm(100) >    x <- rnorm(100) >    plot(y ~ x)

Re: [R] save plot

2010-07-17 Thread Gavin Simpson
On Fri, 2010-07-16 at 11:17 -0400, linda.s wrote: > I made a plot, but after I made a second plot, the previous plot was > gone. How can I save all the plots in a file (I do not manually copy > and paste them one by one)? > Thanks. > Linda [I presume you addressed this to Duncan Murdoch for a good

Re: [R] save plot

2010-07-16 Thread Erik Iverson
We need to know how you're doing this, with a minimal example that we can run. Most graphics devices accept a file or filename argument, so that's one way. If you're using the pdf device, multiple plots will create multiple pages in the final output.. linda.s wrote: I made a plot, but after

[R] save plot

2010-07-16 Thread linda.s
I made a plot, but after I made a second plot, the previous plot was gone. How can I save all the plots in a file (I do not manually copy and paste them one by one)? Thanks. Linda __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo

Re: [R] Save plot to text file

2009-10-07 Thread Henrique Dallazuanna
See ?recordPlot On Wed, Oct 7, 2009 at 5:09 AM, Pradeep Raje wrote: > Dear all:I am sorry if I have missed a solution posted earlier. > My collaborator (sitting in a different time zone  and not on R) wants to > re-plot the charts that I have obtained after some complex processing. There > are th

[R] Save plot to text file

2009-10-07 Thread Pradeep Raje
Dear all:I am sorry if I have missed a solution posted earlier. My collaborator (sitting in a different time zone and not on R) wants to re-plot the charts that I have obtained after some complex processing. There are thirty charts in all, of different types, and some are multi-plots (plot(new=T))