简体   繁体   English

在单个rds文件中读取和保存大文件rds文件

[英]reading and saving large files rds files in a single rds file

I have a list that contain many large files. 我有一个包含许多大文件的列表。 All the files have the same column names. 所有文件都具有相同的列名。 I want to combine them into an rds file and save. 我想将它们组合成rds文件并保存。

  list.nam<- list.files(pattern="*.I S")
    list.fil <- lapply (list.nam, readRDs) 

Error in match.fun(FUN) : object 'readRDs' not found

您输入了错误的函数名称,将readRDs替换为readRDS即可

list.fil <- lapply (list.nam, readRDS)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM