I have loaded an Excel.xlsx which has 8 sheets as a list, by
> require (XLConnect)
> wb <- loadWorkbook ("D:/data /Excel.xlsx")
> list <- readWorksheet (wb, sheet = getSheets (wb))
But what I want to get are 8 independent data.frames. So I want to "unlist" the list into data.frames. I've tried ldply, but this combine all the 8 sheets into one data.frame.
Does anyone know how to load sheets under one Excel to be separate data.frames? Or how to convert List elements into separate data.frames? Thanks a lot!