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?

link|improve this question

Yes; it's possible. – Joshua Ulrich May 23 '11 at 15:22
It's possible, but not very trivial. I never see a reason not to export to a text file first. – Sacha Epskamp May 23 '11 at 15:23
I don't think it's that hard (see below) – Ben Bolker May 23 '11 at 15:24
@Sacha Epskamp: What are the drawbacks of reading directly form Excel? – waanders May 23 '11 at 15:32
Pretty much installing perl. It's not hard or anything but it makes your code less reproducible. – Sacha Epskamp May 23 '11 at 15:35
show 4 more comments
feedback

5 Answers

up vote 3 down vote accepted

Yes. See the relevant page on the R wiki. Short answer: read.xls from the gdata package works most of the time (you may need to have Perl installed on your system). There are various caveats, and alternatives, listed on the R wiki page.

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.

link|improve this answer
1  
There are a lot of potential problems to consider that I've run into personally. Fields with numbers with comma's need to be stripped and converted to numeric in R. Fields with "-" need to be recoded to NA. Overall recommendation is to really look at your numbers in Excel and ensure that they are being translated correctly into R. – Brandon Bertelsen May 23 '11 at 17:06
Can't argue with "you really need to look at your numbers" ... what is the issue with "-" fields? does na.strings="-" address the problem? How many of these issues are generic and how many of them (e.g. numeric fields with commas) can be addressed with other tools such as XLConnect ...? – Ben Bolker May 23 '11 at 18:26
That comment was directed to the OP, not at you Ben, my fault for bad placement. – Brandon Bertelsen May 23 '11 at 18:39
feedback

Let me reiterate what @Chase recommended: Use XLConnect.

The reasons for using XLConnect are, in my opinion:

  1. Cross platform. XLConnect is written in Java and, thus, will run on Win, Linux, Mac with no change of your R code (except possibly path strings)
  2. Nothing else to load. Just install XLConnect and get on with life.
  3. You only mentioned reading Excel files, but XLConnect will also write Excel files, including changing cell formatting. And it will do this from Linux or Mac, not just Win.

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.

link|improve this answer
Thanks for the overview. I'll have to check this one out too. – Brandon Bertelsen May 23 '11 at 17:04
feedback

I've had good luck with XLConnect: http://cran.r-project.org/web/packages/XLConnect/index.html

link|improve this answer
feedback
library(RODBC)
file.name <- "file.xls"
sheet.name <- "Sheet Name"

## Connect to Excel File Pull and Format Data
excel.connect <- odbcConnectExcel(file.name)
dat <- sqlFetch(excel.connect, sheet.name, na.strings=c("","-"))
odbcClose(excel.connect)

Personally, I like RODBC and can recommend it.

link|improve this answer
3  
Caveat: ODBC can sometimes be tricky to get running on platforms other than Windows. – JD Long May 23 '11 at 16:52
Very very true. – Brandon Bertelsen May 23 '11 at 17:03
@JD Long and even on windows it's a PITA. No sexy time for me and ODBC on 64 bit W7... – Roman Luštrik Aug 15 '11 at 7:38
feedback

Another solution is the xlsReadWrite package, which doesn't require additional installs but does require you download the additional shlib before you use it the first time by :

require(xlsReadWrite)
xls.getshlib()

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 :

  • whatever your solution (RODBC, gdata, xlsReadWrite) some strange things can happen when your data gets converted. Especially dates can be rather cumbersome. The HFWutils package has some tools to deal with EXCEL dates (per @Ben Bolker's comment).

  • if you have large sheets, reading in text files is faster than reading in from EXCEL.

  • for .xls and .xlsx files, different solutions might be necessary. EG the xlsReadWrite package currently does not support .xlsx AFAIK. gdata requires you to install additional perl libraries for .xlsx support. xlsx package can handle extensions of the same name.

link|improve this answer
the HFWutils package has some tools for dealing with Excel date formats ... – Ben Bolker May 23 '11 at 18:30
@Ben Thx for the tip, I'll include it in my answer. I didn't try to be complete though, as the wiki page the accepted answer links to is already rather complete. But it doesn't mention the HFWutils package. – Joris Meys May 23 '11 at 21:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.