У меня есть несколько файлов Excel, каждый с разными листами. Я попытался использовать readxl и map для импорта его в R. Однако я смог сделать это только с помощью цикла for. Приведенный ниже код работает нормально, но я хотел бы знать, если есть умный способ сделать это. Я продолжаю думать, что мог бы сделать это с map2, но мне чего-то не хватает.
library(tidyverse)
library(readxl)
library(writexl)
### As a first step, I get all the files from my project folder and create an empty list for looping purposes
files <- list.files(pattern = ".xlsx")
data_xlsx <- list()
### I then use seq_along in all the files and map_df to read the each excel file
for (i in seq_along(files)) {
data_xlsx[[i]] <- files[i] %>%
excel_sheets() %>%
set_names() %>%
map_df(
~ read_xlsx(path = files[i], sheet = .x, range = "H3"),
.id = "sheet")
}
# I use the code below to get the files name into the list
data_xlsx <- set_names(data_xlsx, files)
# This final code is just to transform the list into a data frame with a column with the name of the files
data_xlsx_df <- map2_df(data_xlsx, files, ~update_list(.x, file = .y))
Создано в 2018-07-01 пакетом представ (v0.2.0).