I am trying to write excel files from a list in my current working R space using purrr::map. I would like to use the name of each list as the excel file name (ex: name_1.xlsx, name_2.xlsx). How do I get purrr:map to do it?
library(tidyverse)
library(writexl)
l2 <- list(
tibble(x = 1:5, y = 1, z = x ^ 2 + y),
tibble(x = 2:6, y = 3, z = x ^ 2 + y)
)
names(l2) <- c("name_1", "name_2")
I have tried these two solutions but they do not work properly.
map(l2, write_xlsx, str_c(names(l2), ".xlsx"))
map(l2, ~write_xlsx(l2, path = str_c(names(l2), ".xlsx")))
I think you need
map2
to supply bothl2
&names(l2)
towrite_xlsx
. Here.x
refers tol2
and.y
refers tonames(l2)
Edit: you can also use
walk2
,pmap
&pwalk