Re: [R] generate multipe output .csv files in a loop

2009-04-22 Thread Gabriel R. Rodriguez
SN (1686) Hurlingham - Argentina Tel 54 11 4621 0125/1463/1684/5663 Int. 123 garo...@cnia.inta.gov.ar -Mensaje original- De: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] En nombre de Gator Connection Enviado el: Wednesday, April 22, 2009 4:46 PM Para: r help Asunto:

[R] generate multipe output .csv files in a loop

2009-04-22 Thread Gator Connection
I need to generate output files as .csv file in a loop: let's say, I want to generate a sequence of files according to the loop number "i". the first file genearted should be file1.csv the second should be file2.csv I use: write.csv(temp, "file$i$.csv") in the loop but it did not work. can