Re: [R] error in saved .csv

2011-03-03 Thread Jim Holtman
why didn't work? What was the error, or why did you assume there was an error? Can you clarify. Sent from my iPad On Mar 1, 2011, at 17:50, Tamas Barjak wrote: > Yes, the format is incorrect. I have already tried the write.table, but it > didn't work. > > > 2011/3/1 jim holtman > I am no

Re: [R] error in saved .csv

2011-03-01 Thread Don McKenzie
If you have ONE data frame that you want to export to excel (I believe that was the original request), you probably don't need to change any of the default arguments to write.csv(), except "row.names", which will give you an extra column. On Mar 1, 2011, at 2:50 PM, Tamas Barjak wrote: > Yes, t

Re: [R] error in saved .csv

2011-03-01 Thread Tamas Barjak
Yes, the format is incorrect. I have already tried the write.table, but it didn't work. 2011/3/1 jim holtman > I am not sure what you are saying your problem is? Is the format > incorrect? BTW, notice that write.csv does not have a 'sep' > parameter. Maybe you should be using write.table. >

Re: [R] error in saved .csv

2011-03-01 Thread Peter Langfelder
On Tue, Mar 1, 2011 at 1:36 PM, Tamas Barjak wrote: > Help me please! > > I would like to be saved a data table: > > write.csv(random.t1, "place", dec=",", append = T, quote = FALSE, sep = " ", > qmethod = "double", eol = "\n", row.names=F) > > It's OK! > > But the rows of file >  1,1,21042,-4084

Re: [R] error in saved .csv

2011-03-01 Thread jim holtman
I am not sure what you are saying your problem is? Is the format incorrect? BTW, notice that write.csv does not have a 'sep' parameter. Maybe you should be using write.table. On Tue, Mar 1, 2011 at 4:36 PM, Tamas Barjak wrote: > Help me please! > > I would like to be saved a data table: > > wr