Re: [R] How to protect two jobs running on the same directory at the same time not to corrupt each other results:

2007-02-09 Thread Patrick Burns
You can 'save' the objects produced by each BATCH job in a file whose name relates to the job. With this technique, you can run as many BATCH jobs on the same data as you like. Once the jobs are done, then you can 'load' the files that were saved. Patrick Burns [EMAIL PROTECTED] +44 (0)20 8525

[R] How to protect two jobs running on the same directory at the same time not to corrupt each other results:

2007-02-08 Thread Aldi Kraja
Hi, I have a large group of jobs, some of them are running on the same directory. All of them in batch mode. What are the best ways to protect from corrupting the results two or more jobs running on the same directory. One, I would think can be to run each job in a separate directory, collect

Re: [R] How to protect two jobs running on the same directory at the same time not to corrupt each other results:

2007-02-08 Thread Michel Lang
Am Donnerstag, 8. Februar 2007 21:33 schrieb Aldi Kraja: Is there any other solution better than creating separate directories in R? I am thinking if there is any option in R to create a unique id which has its own unique .Rdata, although in the same directory? You could try using tempfile()