write_dataframes_to_excel: Write Dataframes to Excel

View source: R/utils.R

write_dataframes_to_excelR Documentation

Write Dataframes to Excel

Description

This function creates an Excel file with each dataframe in a list as a separate sheet.

Usage

write_dataframes_to_excel(df_list, filename)

Arguments

df_list

A named list of dataframes to write to the Excel file.

filename

The name of the Excel file to create.

Value

No return value. The function prints a message indicating the completion of the Excel file writing.

Examples


tox_dat <- extr_tox("50-00-0")
temp_file <- tempfile(fileext = ".xlsx")
write_dataframes_to_excel(tox_dat, filename = temp_file)


extractox documentation built on April 4, 2025, 2:30 a.m.