Rex, Maybe RPy (Python interface to R) could be of help in automating R? Logging is then made very flexible using Python.
- http://rpy.sourceforge.net/ - http://gestalt-system.sourceforge.net/rpy_demo.html If you combine it with py2exe you could possibly create an windows-executable file that controls R. Then you can also use Win2K's (scheduled) service functionality for running the application. (This is untried though, but assumed to work). - http://starship.python.net/crew/theller/py2exe/ Hope this helps. Best regards, Amund Tveit http://www.idi.ntnu.no/~amundt/ - http://gamemining.net/ ----- Original Message ----- From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 13, 2003 12:05 AM Subject: [R] Ideas needed on automation of R > I need some guidance on what is the best way to automate R I am aware of > Rterm. > > First question: Is it true that R is not currently OLE accessible under > Windows 2000? > Second question: Is there an R command that echoes all R Console results to > a run log system file? > > My first attempt to write a run log file is the example from the R Data > Inport/Export documentation. > > > zz<- "textConnection("ex.lm.out","w") > > example(lm, prompt.echo = ">") > > sink() > > close(zz) > > I can't find the file "ex.lm.out" anywhere on my system's drive. But the > file exists in R as confirmed by the next command: > > > cat(ex.lm.out, sep="\n") > > Rex > > ______________________________________________ > [EMAIL PROTECTED] mailing list > http://www.stat.math.ethz.ch/mailman/listinfo/r-help ______________________________________________ [EMAIL PROTECTED] mailing list http://www.stat.math.ethz.ch/mailman/listinfo/r-help
