[R] can Rgui.exe be launched with a script as an argument?

2006-11-08 Thread Bill Bachman
Ultimately, I would like to launch R (from another application) with a script as an argument that creates a plot. I am running on Windows XP with R 2.4.0. I currently can do this with S-Plus from my application by giving this command: “C:\Program Files\Insightful\splus62\cmd\splus.exe”

Re: [R] can Rgui.exe be launched with a script as an argument?

2006-11-08 Thread Bill Bachman
Thank you to Paul Murrell for a solution: # test.R require(graphics) a-c(1,2,3,4) b-c(1,4,9,16) plot(a,b) -Original Message- From: Lanre Okusanya [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 08, 2006 1:04 PM To: Bill Bachman Cc: r-help@stat.math.ethz.ch Subject: Re: [R] can