tablexlsx
R package that allows to export data frames from R to xslx workbooks.
To install tablexlsx
from CRAN :
install.packages("tablexlsx")
Or alternatively to install the development version from GitHub :
::install_github("ddotta/tablexlsx") remotes
Then to load it :
library(tablexlsx)
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.
Some advantages of using this package :
xlsx
files can be passed
as an argument in functions as simple tables or list of tables;%>%
and |>
operators and these 3 syntaxes below are equivalent :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: