Re: [R] Append to a csv file

2009-04-22 Thread Carlos Cuartas
] Append to a csv file I am looping over a data set and at each loop I am creating a dataframe “mydata” That I wanted to be saves in a .csv file, but I want all the results to be saved in the same file and this is the way I do it write.csv(mydata, file= “data.csv”=F, append=T) . the csv file

Re: [R] Append to a csv file

2009-04-20 Thread jim holtman
Try writing to a connection so that the file stays opens. On Mon, Apr 20, 2009 at 5:39 PM, kayj wrote: > > I am looping over a data set and at each loop I am creating a dataframe > “mydata” > That I wanted to be saves in a .csv file, but I want all the results to be > saved in the same file and t

Re: [R] Append to a csv file

2009-04-20 Thread David Winsemius
On Apr 20, 2009, at 5:39 PM, kayj wrote: I am looping over a data set and at each loop I am creating a dataframe “mydata” That I wanted to be saves in a .csv file, but I want all the results to be saved in the same file and this is the way I do it write.csv(mydata, file= “data.csv”=F, a

[R] Append to a csv file

2009-04-20 Thread kayj
I am looping over a data set and at each loop I am creating a dataframe “mydata” That I wanted to be saves in a .csv file, but I want all the results to be saved in the same file and this is the way I do it write.csv(mydata, file= “data.csv”=F, append=T) . the csv file looks fine but I always get