How can I read an Excel file directly into R? Or should I first export the data to a text- or CSV file and import that file into R?
feedback
|
|
Yes. See the relevant page on the R wiki. Short answer: The only reason I see not to do this directly is that you may want to examine the spreadsheet to see if it has glitches (weird headers, multiple worksheets [you can only read one at a time, although you can obviously loop over them all], included plots, etc.). But for a well-formed, rectangular spreadsheet I generally have no problem with this process. | |||||||||
feedback
|
|
Let me reiterate what @Chase recommended: Use XLConnect. The reasons for using XLConnect are, in my opinion:
XLConnect is somewhat new compared to other solutions so it is less frequently mentioned in blog posts and reference docs. For me it's been very useful. | |||
feedback
|
|
I've had good luck with | |||
|
feedback
|
Personally, I like RODBC and can recommend it. | |||||||||
feedback
|
|
Another solution is the
Forgetting this can cause utter frustration. Been there and all that... On a sidenote : You might want to consider converting to a text-based format (eg csv) and read in from there. This for a number of reasons :
| |||||
feedback
|