This is a quick script showing how to make multi-tabbed .xlsx files. I recently had the need to do this and used the flexible openxlsx package maintained by : Alexander Walker.
The package is described by the author like this:
openxlsx: Read, Write and Edit XLSX Files
Simplifies the creation of Excel .xlsx files by providing a high level interface to writing, styling and editing worksheets. Through the use of ‘Rcpp’, read/write times are comparable to the ‘xlsx’ and ‘XLConnect’ packages with the added benefit of removing the dependency on Java.
This can make a repetitive task where the deliverable is a multi-tabbed Excel workbook a scriptable task. I only used a small part of the package’s capabilities and found the tools easy to use. The basic gist in the way I used the packages was to:
- Create a workbook object in R
- Add data sets to it (each data set is a tab)
- Write it out to a file
There is also tooling to do all sorts of styling and other ways to impress your boss.
Example
## Load dependencies if (!require('openxlsx')) install.packages('openxlsx') library('openxlsx') ## Split data apart by a grouping variable; ## makes a named list of tables dat <- split(mtcars, mtcars$cyl) dat ## Create a blank workbook wb <- createWorkbook() ## Loop through the list of split tables as well as their names ## and add each one as a sheet to the workbook Map(function(data, name){ addWorksheet(wb, name) writeData(wb, name, data) }, dat, names(dat)) ## Save workbook to working directory saveWorkbook(wb, file = "example.xlsx", overwrite = TRUE)
var vglnk = { key: '949efb41171ac6ec1bf7f206d57e90b8' }; (function(d, t) { var s = d.createElement(t); s.type = 'text/javascript'; s.async = true; s.src = '//cdn.viglink.com/api/vglnk.js'; var r = d.getElementsByTagName(t)[0]; r.parentNode.insertBefore(s, r); }(document, 'script'));
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: Data science, Big Data, R jobs, visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series, trading) and more...