I'm trying to export data from R into one Excel file (into different sheets):
library(plyr)
library(RODBC)
g <- lapply(iris, function(x) as.data.frame(table(x)))
save2excel <- function(x) sqlSave(xlsFile,
x, tablename = x[1], rownames = FALSE)
xlsFile <- odbcConnectExcel("C:/Temp/iris.xls", readOnly = FALSE)
l_ply(g, save2excel)
odbcCloseAll()
This generates on error:
Error in sqlColumns(channel, tablename) :
‘1:35’: table not found on channel
The problem lies in tablename = x[1], how to get list names into sheet names?