使用readxl软件包合并xlsx文件后,url会消失
通常,我会用可重现的样本提问。 但是,由于问题的性质,我无法提供可生成的脚本。
我有一个包含.xlsx文件列表的文件夹,并使用readxl软件包将文件合并到一个数据框中。 但是,一列中的url不再存在。
如何在保留url的同时合并.xlsx文件? 如果有帮助,以下是我用来合并.xlsx文件的脚本:
data.files = list.files()
df <- readxl::read_excel(data.files[1], sheet=1, skip=1) #reading the first file of list
for (file in data.files[-1]){
newFile <- readxl::read_excel(file, sheet=1, skip = 1) ## Drops the first row
df <- merge(df, newFile, all=T)
}
我想继续使用readxl软件包。
链接地址: http://www.djcxy.com/p/24805.html上一篇: url disappears after merging xlsx files using readxl package