我正在将多个RDA文件写入计算机并尝试再次打开它们。例如,我保存了一个名为' geocode'的数据框。为:
dim(geocode)
save(geocode, file=paste0("[path]/geocodenew.Rda"))
我可以在计算机上看到保存的文件大约30 KB。但后来我尝试访问它:
load("[path]/geocodenew.Rda")
geocodenew
我收到错误:
"错误:对象' geocodenew'没找到。"
我做错了什么?
(如果这有用的话,我最终将使用它来使用rbind()
堆叠多个数据帧)
答案 0 :(得分:2)
如果要保存具有特定文件名的特定对象,可以使用saveRDS
。例如saveRDS(geocode, file=paste0('path/geocodenew.rds')
,然后在geocodenew <- readRDS('path/geocodenew.rds')
中阅读。