What's a robust method in R for importing from and exporting data to Excel?

纵饮孤独 提交于 2019-12-07 18:20:14

问题


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?


回答1:


I've used the technique described here: Export Data Frames To Multi-worksheet Excel File




回答2:


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.




回答3:


XLConnect works well. It is cross-platform. It can read and write xls and xlsx files. See this previous answer




回答4:


This question is 3 years old, but I'll throw this in: if you want to write to the spreadsheet, remember to add readOnly=FALSE as an argument to odbcConnectExcel and odbcConnectExcel2007.




回答5:


There is a package that may help with dealing with excel 2007, but I haven't tried it.

http://www.omegahat.org/RExcelXML/



来源:https://stackoverflow.com/questions/1848331/whats-a-robust-method-in-r-for-importing-from-and-exporting-data-to-excel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!