⚠️There's a newer version (1.4.3) of this package. Take me there.

readxl

The readxl package makes it easy to get data out of Excel and into R. Compared to many of the existing packages (e.g. gdata, xlsx, xlsReadWrite) readxl has no external dependencies so it's easy to install and use on all operating systems. It is designed to work with tabular data stored in a single sheet.

Readxl supports both the legacy .xls format and the modern xml-based .xlsx format. .xls support is made possible the with libxls C library, which abstracts away many of the complexities of the underlying binary format. To parse .xlsx, we use the RapidXML C++ library.

Installation

You can install:

  • the latest released version from CRAN with:
install.packages("readxl")
  • the latest development version from github with:
# install.packages("devtools")
devtools::install_github("hadley/readxl")

Usage

library(readxl)

# read_excel reads both xls and xlsx files
read_excel("my-old-spreadsheet.xls")
read_excel("my-new-spreadsheet.xlsx")

# Specify sheet with a number or name
read_excel("my-spreadsheet.xls", sheet = "data")
read_excel("my-spreadsheet.xls", sheet = 2)

# If NAs are represented by something other than blank cells,
# set the na argument
read_excel("my-spreadsheet.xls", na = "NA")

Features

  • Re-encodes non-ASCII characters to UTF-8.

  • Loads datetimes into POSIXct columns. Both Windows (1900) and Mac (1904) date specifications are processed correctly.

  • Blank columns and rows are automatically dropped.

  • It returns data frames with additional tbl_df class, so if you have dplyr loaded, you get nicer printing.

Example data

The package includes an example file created with openxlsx:

l <- list("iris" = iris, "mtcars" = mtcars, chickwts = chickwts, quakes = quakes)
openxlsx::write.xlsx(l, file = "inst/extdata/datasets.xlsx")

Copy Link

Version

Down Chevron

Install

install.packages('readxl')

Monthly Downloads

794,650

Version

0.1.1

License

GPL-3 + file LICENSE

Maintainer

Last Published

March 28th, 2016

Functions in readxl (0.1.1)