【发布时间】:2019-04-12 09:45:07
【问题描述】:
我有一个保存为 #saveRDS 格式的 excel 文件,但现在当我尝试查看该文件时,我得到“表中没有可用数据”
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
【问题讨论】:
标签: r