View source: R/save_gcae_setup.R
save_gcae_setup | R Documentation |
gcae_setup
to fileSave a gcae_setup
to file
save_gcae_setup(
gcae_setup = gcae_setup,
gcae_setup_filename = gcae_setup_filename
)
gcae_setup |
GCAE model setup, as created by create_gcae_setup, read from file by read_gcae_setup_file, checked by check_gcae_setup, and saved to file by save_gcae_setup. |
gcae_setup_filename |
name of a file to save/load a |
Nothing
Richèl J.C. Bilderbeek
Use read_gcae_setup_file to read a gcae_setup
from file
# Create a gcae_setup
gcae_setup <- create_test_gcae_setup()
# Use a temporary file
gcae_setup_filename <- get_gcaer_tempfilename(fileext = ".csv")
# Save gcae_setup to temporary file
save_gcae_setup(
gcae_setup = gcae_setup,
gcae_setup_filename = gcae_setup_filename
)
# Load the temporary file to get a copy of the gcae_setup
gcae_setup_again <- read_gcae_setup_file(gcae_setup_filename)
# Cleanup
file.remove(gcae_setup_filename)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.