Get an R object stored in an Rdata file
R对象存储在RDATA文件
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns an R object stored in an Rdata file
RDATA文件中返回一个R对象
用法----------Usage----------
getobj(Rdata)
参数----------Arguments----------
参数:Rdata
path to an Rdata file containing a single R object to load
RDATA文件包含一个单一的R对象加载的路径
Details
详情----------Details----------
Loads an R object and stores it under a new name without creating a duplicate copy. If multiple objects are stored in the same
负载R对象和一个新的名称下的商店,它没有创建副本。如果多个对象都存储在同一
值----------Value----------
The R object stored in Rdata.
存储在RdataR对象。
作者(S)----------Author(s)----------
Stephanie Gogarten
参见----------See Also----------
saveas
saveas
举例----------Examples----------
x <- 1:10
file <- tempfile()
save(x, file=file)
y <- getobj(file)
unlink(file)