Re: [R] creating graphs in BATCH mode

2003-11-26 Thread Jason Turner
Reinhard Sy wrote: Hi a short question is there a way to generate jpeg's etc. in BATCH mode ? The following example does not work in BATCH: ... Error in jpeg("/tmp/my.jpg") : R_X11 module cannot be loaded In addition: Warning message: X11 module is not available under this GUI Execution halte

Re: [R] creating graphs in BATCH mode

2003-11-26 Thread Roger D. Peng
Try using bitmap() instead. -roger Reinhard Sy wrote: Hi a short question is there a way to generate jpeg's etc. in BATCH mode ? The following example does not work in BATCH: I have a file called Rgraph.in: [EMAIL PROTECTED]:11][~][57]> cat Rgraph.in jpeg("/tmp/my.jpg") hist(runif(1)) de

[R] creating graphs in BATCH mode

2003-11-26 Thread Reinhard Sy
Hi a short question is there a way to generate jpeg's etc. in BATCH mode ? The following example does not work in BATCH: I have a file called Rgraph.in: [EMAIL PROTECTED]:11][~][57]> cat Rgraph.in jpeg("/tmp/my.jpg") hist(runif(1)) dev.off() [EMAIL PROTECTED]:11][~][58]> [EMAIL PROTECTE