gpt4 book ai didi

r - 如何使用 R purrr 组合数百个 Excel 文件/工作表

转载 作者:行者123 更新时间:2023-12-04 08:55:50 25 4
gpt4 key购买 nike

我有数百个 Excel 文件,其中包含不同数量的工作表。我想将所有这些 Excel 文件和工作表合并到一个数据框中。幸运的是,所有表格都采用相同的格式(它们是由客户填写并上传到中央存储库的模板)。
让我们用下面的代码模拟这些 Excel 文件和工作表:

library(tidyverse)
library(openxlsx)
library(readxl)
write.xlsx(list(iris, iris * 2, iris * 3), "three_sheets.xlsx")
write.xlsx(list(iris, iris / 2), "two_sheets.xlsx")
我将如何使用 R purrr 将这些文件和工作表组合到一个数据框中?我可以改变一列来识别每行来自哪个文件/工作表吗?如果 purrr 不是此类问题的最佳选择,请随时指出其他解决方案。

最佳答案

purrr似乎是此类操作的不错选择。你可以做 :

library(readxl)
library(purrr)

#Get full path of all excel files in the folder
all_files <- list.files('path/of/folder',pattern = '\\.xlsx$', full.names = TRUE)
For each file
result <- map_df(all_files, function(x) {
#Get all the sheet names
all_sheets <- excel_sheets(x)
#read the excel file with one sheet at a time
map_df(all_sheets, ~read_excel(x, sheet = .x) %>%
#add columns for filename and sheetname
dplyr::mutate(filename = basename(x), sheetname = .x))
})

关于r - 如何使用 R purrr 组合数百个 Excel 文件/工作表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63840240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com