View source: R/00-utils.R View source: R/05-as_any.R
write_excel_allsheets | R Documentation |
writexl::write_xlsx()
recursivelyThe R objects are read and the values are placed in separated sheets. This function is inspired by the function proposed in https://statmethods.wordpress.com/2014/06/19/quickly-export-multiple-r-objects-to-an-excel-workbook/
The R objects are read and the values are placed in separated sheets. This function is inspired by the function proposed in https://statmethods.wordpress.com/2014/06/19/quickly-export-multiple-r-objects-to-an-excel-workbook/
write_excel_allsheets(list, filename)
write_excel_allsheets(list, filename)
list |
R objects, coma separated. |
filename |
A character string of the path of the Excel file. |
Nothing to be returned. The file is created at the path declared in the environment.
Nothing to be returned. The file is created at the path declared in the environment.
writexl::write_xlsx()
writexl::write_xlsx()
{
unlink(
write_excel_allsheets(
list = list(iris = iris, mtcars = mtcars),
filename = tempfile()))
}
{
unlink(
write_excel_allsheets(
list = list(iris = iris, mtcars = mtcars),
filename = tempfile()))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.