我有一个Excel文件,我将其保存为#saveRDS格式,但是现在当我尝试查看该文件时,我得到“表中没有可用数据”
countries_all2 <- saveRDS(countries_map, "as_countries_map_2019.RDS")
summary(countries_all2)
Length Class Mode
0 NULL NULL
readRDS(countries_all2)
readRDS(countries_all2)中的错误:错误的“文件”参数
readRDS(countries_all2.RDS)
readRDS(countries_all2.RDS)中的错误: 找不到对象“ countries_all2.RDS”
readRDS(as_countries_map_2019.RDS)
readRDS(as_countries_map_2019.RDS)中的错误: 找不到对象'as_countries_map_2019.RDS'
summary(countries_all2)
Length Class Mode
0 NULL NULL
答案 0 :(得分:0)
您不应将saveRDS
的结果分配给变量countries_all2
。
saveRDS(countries_map, "as_countries_map_2019.RDS")
然后,您需要在readRDS
中引用文件名。假设您想读入对象countries_all2
:
countries_all2 <- readRDS("as_countries_map_2019.RDS")