Open ggrothendieck opened 1 year ago
Suggest that write_xlsx allow a directory as the second argument if the first argument is a named list of data frames in which case they are all written to that directory with an extension of xlsx. That would allow
write_xlsx
L <- list(BOD = BOD, BOD10 = 10 * BOD) write_xlsx(L, ".")
instead of
write_xlsx(L, sprintf("./%s.xlsx", names(L)))
Suggest that
write_xlsx
allow a directory as the second argument if the first argument is a named list of data frames in which case they are all written to that directory with an extension of xlsx. That would allowinstead of