version cranlogs Downloads R check status codecov CodeFactor

:package: Package tablexlsx

R package that allows to export data frames from R to xslx workbooks.

Installation

To install tablexlsx from CRAN :

install.packages("tablexlsx")

Or alternatively to install the development version from GitHub :

remotes::install_github("ddotta/tablexlsx")

Then to load it :

library(tablexlsx)

Why this package ?

This package is a wrapper of some functions from the great openxlsx package

The purpose of this package is to meet the needs of R users who want to export data frames in xlsx files to share their data and results with other users not necessarily R users.

The goal is to get an API that is as simple as possible to use. It’s intended to meet the needs of users who want to create clean, well-documented xlsx files (with a title and footnotes).

The package will be improved over time and will include new features based on the needs expressed by users. To do so, feel free to open an issue here.

Advantages

Some advantages of using this package :

toxlsx(object = iris, path = mypath)
iris |> toxlsx(path = mypath)
iris %>% toxlsx(path = mypath)

:point_right: For more, see examples gallery in this vignette :mag_right: