Learn R Programming

xlutils3

The xlutils3 package is a wrapper for the readxl package. It aims to extract all Excel files of a folder at once.

Installation

You can install:

  • the latest development version from Saagie internal Gitlab (requires an account):
# install.packages("devtools")
devtools::install_git("ssh://git@gitlab.saagie.tech:42/aurele/xlutils3.git")
  • or from Github:
# install.packages("devtools")
devtools::install_github("eaurele/xlutils3")
  • or maybe from CRAN (some day).

Usage

library(xlutils3)

# Extract all Excel files from folder, recursively:
data_ <- extract_excel("./Folder full of Excel files/")

# Compute summary of extracted data as a dataframe
View(summary_excel(data_))

# View all extracted data
view_excel(data_)

Features

  • Allows to pass args to readxl::excel_read for all files, or for specific files. (See general_case and weird_cases parameters for extract_excel).

Copy Link

Version

Install

install.packages('xlutils3')

Monthly Downloads

10

Version

0.1.0

License

GPL-3

Maintainer

Aurele Morvan

Last Published

August 31st, 2016

Functions in xlutils3 (0.1.0)

summary_excel

Summarize Output of extract_excel
view_excel

View the Output of extract_excel
extract_excel

A function that extracts all .xls[x] files in a folder