[R] Newbie:Export Data into Excel from R

2008-03-02 Thread Keizer_71
Hi, All i want is to export my list into c: drive and save it as csv file and manually import into Excel. I have the read the article but i am having issues http://pbil.univ-lyon1.fr/library/base/html/write.table.html excel-write.table(probe_gene, file = c:\foo.csv, sep = ,, col.names = NA)

Re: [R] Newbie:Export Data into Excel from R

2008-03-02 Thread John Kane
R uses unix type slashes that is / rather than \ even if you're using Windows You probably need either to write file =c:/foo.csv or escape the \ thusly file = c:\\foo.csv Either way should work. Personally find it easier to use '/. --- Keizer_71 [EMAIL PROTECTED] wrote: Hi, All i

Re: [R] Newbie:Export Data into Excel from R

2008-03-02 Thread Charilaos Skiadas
You will likely need to escape that backslash, i.e. c:\\foo.csv. Haris Skiadas Department of Mathematics and Computer Science Hanover College On Mar 2, 2008, at 10:12 AM, Keizer_71 wrote: Hi, All i want is to export my list into c: drive and save it as csv file and manually import into

Re: [R] Newbie:Export Data into Excel from R

2008-03-02 Thread David Winsemius
Keizer_71 [EMAIL PROTECTED] wrote in news:[EMAIL PROTECTED]: All i want is to export my list into c: drive and save it as csv file and manually import into Excel. I have the read the article but i am having issues http://pbil.univ-lyon1.fr/library/base/html/write.table.html