Skip to contents

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

# \donttest{
tox_dat <- extr_tox("50-00-0")
#>  Checking Internet Connection...
#>  Internet connection OK...
#> Querying 50-00-0. 
#> OK (HTTP 200).
#> 
#> Querying 712. 
#> OK (HTTP 200).
#> 
#>  Checking Internet Connection...
#>  Internet connection OK...
#>  Sending request to CompTox...
#>  Request succeeded with status code: 202
#>  Getting info from CompTox...
#>  Request succeeded with status code: 200
#>  Checking Internet Connection...
#>  Internet connection OK...
#>  Sending request to ICE database...
#>  Request succeeded with status code: 200
#>  Checking Internet Connection...
#>  Internet connection OK...
#>  Quering 50-00-0 to EPA IRIS database...
#>  Request succeeded with status code: 200
#>  Extracting WHO IARC monographs...
#> Last updated: 2024-11-29 5:08pm (CET)
#>  Checking Internet Connection...
#>  Internet connection OK...
#>  Checking Internet Connection...
#>  Internet connection OK...
#>  Downloading data from <https://cfpub.epa.gov/ncea/pprtv/atoz.cfm>.
#>  Overwriting cache.
#>  Extracting EPA PPRTVs.
#> Warning: Chemical 50-00-0 not found!
temp_file <- tempfile(fileext = ".xlsx")
write_dataframes_to_excel(tox_dat, filename = temp_file)
#>  Excell file written in /var/folders/bp/fpwcfq1563l21rz5gdcsfcsw0000gn/T//RtmpBHtujD/file158e2406ab084.xlsx...
# }