write_dataframes_to_excel | R Documentation |
This function creates an Excel file with each dataframe in a list as a separate sheet.
write_dataframes_to_excel(df_list, filename)
df_list |
A named list of dataframes to write to the Excel file. |
filename |
The name of the Excel file to create. |
No return value. The function prints a message indicating the completion of the Excel file writing.
tox_dat <- extr_tox("50-00-0")
temp_file <- tempfile(fileext = ".xlsx")
write_dataframes_to_excel(tox_dat, filename = temp_file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.