首页 > 解决方案 > 无法使用 tidyverse 合并 xls 文件

问题描述

我正在尝试使用 tidyverse 将路径中的一些 xls 文件合并到一个文件中。

收到此错误:新名称:

  • ``-> ...2
  • ``-> ...3
  • ``-> ...4
  • ``-> ...5
  • ``-> ...6
  • ...还有 63 个问题

错误:文件路径:D:\path\to\files\cersai_reverse_0112102018.xls libxls 错误:无法打开文件

请指教。

代码:

library(tidyverse)
library(readxl)

df <- dir("D:/path/to/files/", full.names = T) %>% map_df(read_excel)

标签: rmergexlsreadxl

解决方案


推荐阅读