I've used RODBC for some time to import Excel spreadsheets with mostly good results. However I have had no luck writing to an Excel spreadsheet. Also are there favorable differences using the xlsx format with Excel2007?
views:
206answers:
3
+7
A:
I've used the technique described here: Export Data Frames To Multi-worksheet Excel File
Galwegian
2009-12-04 17:10:35
+2
A:
The R Data Import/Export manual should be considered the best source of advice for these questions.
For reading you can indeed use the RODBC package. An easier solutoion may be read.xls()
from the gdata
For writing you can use one of the wrapper packages such as WriteXLS which wraps around Perl libraries that know how to write in the proprietary and not formally documented xls format.
In general, xlsx will not be a solution as this format is newer, once again proprietary and not documented. For that reason there are even fewer tools coping with this.
Dirk Eddelbuettel
2009-12-04 17:40:58
xlsx is an open format (though probably complicated) http://msdn.microsoft.com/en-us/library/dd922181.aspxYou can actually unzip an xlsx file and view the xml. I expect this will result eventually in a good read/write solution.
kpierce8
2009-12-04 19:08:57
I see. Well, so you have the need for a new `write.xlsx()` function, and the know-how. So go off now and scratch that itch :)
Dirk Eddelbuettel
2009-12-04 22:29:19
A:
There is a package that may help with dealing with excel 2007, but I haven't tried it.
Robert
2009-12-05 17:13:56