Re: [R] X11 graphics windows under CMD BATCH

2011-03-04 Thread Ryan Garner
I had this same issue. My quick and dirty solution was to create an infinite loop at the end of my R plotting script and then manually kill the job with Ctrl+C once I was done looking at the plot. -- View this message in context:

Re: [R] X11 graphics windows under CMD BATCH

2007-10-28 Thread Luke Spadavecchia
Hi Dirk, Thanks for your useful advice, although I am not sure I fully understand your response. I am able to open x11 windows from R CMD BATCH both in windows XP,MAC OS X and Linux (on various machines I use), providing the relevant Sys.setenv() commands are in the script I call prior to

Re: [R] X11 graphics windows under CMD BATCH

2007-10-28 Thread Dirk Eddelbuettel
Hi Luke, On 28 October 2007 at 14:30, Luke Spadavecchia wrote: | Hi Dirk, | | Thanks for your useful advice, although I am not sure I fully | understand your response. | | I am able to open x11 windows from R CMD BATCH both in windows | XP,MAC OS X and Linux (on various machines I use),

[R] X11 graphics windows under CMD BATCH

2007-10-24 Thread Luke Spadavecchia
Hi there, I am trying to plot some output from a FORTRAN (ifort) program using R (2.5.1) under batch mode. In the FORTRAN code, I call R in batch mode to execute a script called fig1.R using something like PROGRAM test USE IFPORT IMPLICIT NONE DO !Some

Re: [R] X11 graphics windows under CMD BATCH

2007-10-24 Thread Dirk Eddelbuettel
Luke, On 24 October 2007 at 15:16, Luke Spadavecchia wrote: | I am trying to plot some output from a FORTRAN (ifort) program using | R (2.5.1) under batch mode. In the FORTRAN code, I call R in batch Your questions is essentially FAQ 7.19. In non-interactive mode, R simply has no X11

Re: [R] X11 graphics windows under CMD BATCH

2007-10-24 Thread David Scott
Not sure about answering your original question, but why not write the graphics output to a file, then fire up a viewer? David Scott On Wed, 24 Oct 2007, Luke Spadavecchia wrote: Hi there, I am trying to plot some output from a FORTRAN (ifort) program using R (2.5.1) under batch mode. In