mc_load {myClim} | R Documentation |
Load myClim object
Description
This function loads the myClim .rds data object saved with mc_save.
The mc_save
and mc_load
functions secure that the myClim object is correctly
loaded across myClim versions.
Usage
mc_load(file)
Arguments
file |
path to input .rds file |
Value
loaded myClim object
Examples
tmp_dir <- tempdir()
tmp_file <- tempfile(tmpdir = tmp_dir)
mc_save(mc_data_example_agg, tmp_file)
data <- mc_load(tmp_file)
file.remove(tmp_file)
[Package myClim version 1.1.0 Index]