[問題] 多個xlsx併檔問題
各位好,
有併檔問題想要請較@@
我有16個資料筆數很多的xlsx檔
想利用R併成一個大檔
首先就是多次讀入這16個檔,接著再把這16個檔合併
Code如下:
library(openxlsx)
library(dplyr)
path <- "C:/Users/xxxx/Documents/R_"
files <- list.files(path, pattern = "*.xlsx$", full.names = TRUE)
dat <- list()
for(i in 1:length(files)){
dat <- c(dat, list(read.xlsx(files[[i]], colNames = TRUE)))
}
DF <- rbind(dat[[1]], dat[[2]],........dat[[16]])
但是覺得這樣好像很繁瑣...
網路上爬文發現有使用map_dfr
嘗試一下
files <- list.files("C:/Users/xxxx/Documents/R", pattern = "*.xlsx$",
full.names = TRUE)
DF <- map_dfr(files, read.xlsx)
但會跑出以下錯誤訊息:
Error in `dplyr::bind_rows()`:
! Can't combine `..1$7.計畫日` <double> and `..2$7.計畫日` <character>.
Run `rlang::last_error()` to see where the error occurred.
百思不得其解這著錯誤原因...是否代表我要將這16個檔的計劃日格式都弄成一樣...
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 180.176.212.49 (臺灣)
※ 文章網址: https://www.ptt.cc/bbs/R_Language/M.1653418010.A.66D.html
※ 編輯: kakaman (111.71.46.57 臺灣), 05/25/2022 02:53:10
※ 編輯: kakaman (111.71.46.57 臺灣), 05/25/2022 02:54:25
※ 編輯: kakaman (111.71.46.57 臺灣), 05/25/2022 02:55:40
推
05/25 03:53,
2年前
, 1F
05/25 03:53, 1F
→
05/25 03:54,
2年前
, 2F
05/25 03:54, 2F
→
05/25 03:54,
2年前
, 3F
05/25 03:54, 3F
推
05/25 03:59,
2年前
, 4F
05/25 03:59, 4F
→
05/25 03:59,
2年前
, 5F
05/25 03:59, 5F
→
05/25 04:01,
2年前
, 6F
05/25 04:01, 6F
→
05/25 04:01,
2年前
, 7F
05/25 04:01, 7F
推
05/25 04:03,
2年前
, 8F
05/25 04:03, 8F
→
05/25 04:05,
2年前
, 9F
05/25 04:05, 9F
→
05/25 04:05,
2年前
, 10F
05/25 04:05, 10F
推
05/25 19:14,
2年前
, 11F
05/25 19:14, 11F
推
05/25 22:49,
2年前
, 12F
05/25 22:49, 12F
→
05/25 22:49,
2年前
, 13F
05/25 22:49, 13F
R_Language 近期熱門文章
PTT數位生活區 即時熱門文章