3

我有多个 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))

reprex 包(v0.2.0) 于 2018 年 7 月 1 日创建。

4

1 回答 1

10

您可以使用嵌套map_df调用来替换 for 循环。据我所知map2,只能对两个长度列表进行操作n并返回一个长度列表n,我认为这不是一种从长度和长度列表中生成长度n * m列表的方法。nm

files <- list.files(pattern = ".xlsx")

data_xlsx_df <- map_df(set_names(files), function(file) {
  file %>% 
    excel_sheets() %>% 
    set_names() %>% 
    map_df(
      ~ read_xlsx(path = file, sheet = .x, range = "H3"),
      .id = "sheet")
}, .id = "file")
于 2018-07-01T04:59:15.713 回答