Re: [R] How can I store the results

2010-01-14 Thread Arnaud Mosnier
: Alex Roy alexroy2...@gmail.com To: r-help@r-project.org Subject: [R] How can I store the results Message-ID: 8bdeb1b51001130659n6341b0e6oe42a029efb7a1...@mail.gmail.com Content-Type: text/plain Dear R users, I am running a R code which gives me 10 columns and 160 rows

[R] How can I store the results

2010-01-13 Thread Alex Roy
Dear R users, I am running a R code which gives me 10 columns and 160 rows. I need to run the code for 100 times and each time I need to store the results in a single file. I do not know how can I store them in a single file without over writting the results? Thanks Alex

Re: [R] How can I store the results

2010-01-13 Thread Greg Snow
Center Intermountain Healthcare greg.s...@imail.org 801.408.8111 -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r- project.org] On Behalf Of Alex Roy Sent: Wednesday, January 13, 2010 8:00 AM To: r-help@r-project.org Subject: [R] How can I store the results

Re: [R] How can I store the results

2010-01-13 Thread jim holtman
Collect the results in a list (one entry for each matrix) and then 'save' the list. When you 'load' it back in, you can easily reference each element for further processing. On Wed, Jan 13, 2010 at 9:59 AM, Alex Roy alexroy2...@gmail.com wrote: Dear R users, I am

Re: [R] How can I store the results

2010-01-13 Thread Gavin Simpson
On Wed, 2010-01-13 at 15:59 +0100, Alex Roy wrote: Dear R users, I am running a R code which gives me 10 columns and 160 rows. I need to run the code for 100 times and each time I need to store the results in a single file. I do not know how can I store them in a