expoSheet | R Documentation |
Export list of data sets into different 'Excel' sheets
expoSheet(
data_list,
data_name,
filename = NULL,
dir = tempdir(),
overwrite = TRUE
)
data_list |
List of datasets. |
data_name |
Character of data names. |
filename |
A character string naming an xlsx file. |
dir |
A character string naming output directory. |
overwrite |
If TRUE, overwrite any existing file. |
An Excel file.
library(openxlsx)
expoSheet(
data_list = list(mtcars, ToothGrowth),
data_name = c("mtcars", "tooth"),
filename = "test.xlsx", dir = tempfile()
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.