Answers:
Rda只是RData的简称。您可以像保存RData一样保存(),加载(),附加()等。
RDS存储单 ř对象。但是,除了这种简单的解释之外,与“标准”存储还存在一些差异。这个R-manual链接到readRDS()函数可能充分阐明了这些区别。
因此,回答您的问题:
除了@KenM的答案外,另一个重要的区别是,在加载保存的对象时,您可以分配Rds
文件的内容。并非如此Rda
> x <- 1:5
> save(x, file="x.Rda")
> saveRDS(x, file="x.Rds")
> rm(x)
## ASSIGN USING readRDS
> new_x1 <- readRDS("x.Rds")
> new_x1
[1] 1 2 3 4 5
## 'ASSIGN' USING load -- note the result
> new_x2 <- load("x.Rda")
loading in to <environment: R_GlobalEnv>
> new_x2
[1] "x"
# NOTE: `load()` simply returns the name of the objects loaded. Not the values.
> x
[1] 1 2 3 4 5