Read in results
read_data(name, path = NULL)
name | Character string identifying the data |
---|---|
path | Character string giving the folder path |
The saved object
##Code read_data#> function (name, path = NULL) #> { #> path <- file.path(path, paste0(name, ".rds")) #> readRDS(path) #> } #> <bytecode: 0x55630b650868> #> <environment: namespace:ETSMissing>