[R] Basic doubts on the use of several script files in R batch mode

2009-04-04 Thread mcnda839
I already searched for information regarding the batch file operations within R. But I could not locate the information I need. Basically I have a doubt regarding the procedures on the batch use of several script files (*.R). How can I do this? How can I define the order of files? My

Re: [R] Basic doubts on the use of several script files in R batch mode

2009-04-04 Thread Emmanuel Charpentier
Le vendredi 03 avril 2009 à 22:30 +0200, mcnda...@mncn.csic.es a écrit : I already searched for information regarding the batch file operations within R. But I could not locate the information I need. Basically I have a doubt regarding the procedures on the batch use of several script

Re: [R] Basic doubts on the use of several script files in R batch mode

2009-04-04 Thread jim holtman
Create a master file that 'source's the required *.R files and then does any of the pre/post processing that you want. On Fri, Apr 3, 2009 at 4:30 PM, mcnda...@mncn.csic.es wrote: I already searched for information regarding the batch file operations within R. But I could not locate the

Re: [R] Basic doubts on the use of several script files in R batch mode

2009-04-04 Thread Patrick Burns
An alternative to Jim's route might be to create functions rather than relying entirely on scripts. Patrick Burns patr...@burns-stat.com +44 (0)20 8525 0696 http://www.burns-stat.com (home of The R Inferno and A Guide for the Unwilling S User) jim holtman wrote: Create a master file that