[R] Initiating graphics recording in RGraphics window via a script

2010-10-20 Thread Dimitri Liakhovitski
Hello! Sometimes I have to produce several graphs at a time, but need to be able to see them all one by one in the RGraphics window. I do it manually like this: I create some plot: plot(1:5) It opens the RGraphics window. I click on the window, go (in the menue) to History-Recording, and then

Re: [R] Initiating graphics recording in RGraphics window via a script

2010-10-20 Thread jim holtman
?windows On Wed, Oct 20, 2010 at 11:19 AM, Dimitri Liakhovitski dimitri.liakhovit...@gmail.com wrote: Hello! Sometimes I have to produce several graphs at a time, but need to be able to see them all one by one in the RGraphics window. I do it manually like this: I create some plot:

Re: [R] Initiating graphics recording in RGraphics window via a script

2010-10-20 Thread Dimitri Liakhovitski
Thanks a lot for the helpful reference, Jim. So, the solution is very simple: windows(record=TRUE) for(i in 10:12){ plot(1:i,main=paste(Plot ,i,sep=)) } Dimitri On Wed, Oct 20, 2010 at 11:24 AM, jim holtman jholt...@gmail.com wrote: ?windows On Wed, Oct 20, 2010 at 11:19 AM, Dimitri