loadEnvi {link2GI} | R Documentation |
Load data from rds format and associated yaml metadata file.
Description
Load data from rds format and associated yaml metadata file.
Usage
loadEnvi(file_path)
Arguments
file_path |
name and path of the rds file. |
Value
list of 2 containing data and metadata.
Examples
## Not run:
a <- 1
meta <- list(a = 'a is a variable')
saveEnvi(a, file.path(tempdir(), 'test.rds'), meta)
b <- loadEnvi(file.path(tempdir(), 'test.rds'))
## End(Not run)
[Package link2GI version 0.6-1 Index]