I want to export some dataframes that I create through a for loop. These should be exported to different Excel sheets in the same file. While exporting, I want each sheet to have a different name. For instance, the sheet names in my following example should be coming from the character vector carriers
.
I cannot use the package xlsx as this does not run on my R. I have tried using the writexl::write_xlsx
function, but I could not make it work. Here is a simple example to reproduce my problem:
library(nycflights13)
library(writexl)
carriers <- c( "UA", "AA", "B6", "DL")
for(i in 1:length(carriers)){
dframe_flt <- flights %>% filter(carrier == carriers[i]) %>% summarize(distance_m = mean(distance))
write_xlsx(dframe, sheet = !! paste(carriers[i]), excel = "flights_data.xlsx", col_names = TRUE)
}
It produces the following error:
Error in write_xlsx(dframe, sheet = !!paste(carriers[i]), excel = "flights_data.xlsx", :
unused arguments (sheet = !!paste(carriers[i]), excel = "flights_data.xlsx")
How do I fix this error?
you are getting the error as
sheet
andexcel
are not arguments inwrite_xlsx
. To write multiple sheets to a single xlsx you want to first put them all in named list and then supply that list towrite_xlsx
.Create the list using map (from tidyr):
Write to xlsx: