Re: [R] Odp: export tables to Excel files

2010-02-23 Thread Tal Galili
p.s: From the post I linked to earlier, I personally am using this code: # install.packages(RODBC) library(RODBC) save2excel - function(x, t.name) sqlSave(xlsFile, x, tablename = t.name, rownames = FALSE, addPK = T) xlsFile - odbcConnectExcel(C:\\output-tables.xls, readOnly = FALSE) temp.df -

Re: [R] Odp: export tables to Excel files

2010-02-23 Thread Ivan Calandra
Thank you all for your helpful answers I will probably use the solution below, it seems more flexible. Ivan Le 2/23/2010 11:16, Tal Galili a écrit : p.s: From the post I linked to earlier, I personally am using this code: # install.packages(RODBC) library(RODBC) save2excel - function(x,