load_options | R Documentation |
Retrieves a matrix of options saved in a file. This matrix can then be used for further analysis or processing.
load_options(file_name)
file_name |
A |
A matrix
representing the loaded options.
tree <- dexisensitivity::masc2
option <- create_options(tree, num_options=3, seed = 42)
save_options(option,paste0(tempdir(),"\\save_options.tab"))
loaded_option <- load_options(paste0(tempdir(),"\\save_options.tab"))
file.remove(paste0(tempdir(),"\\save_options.tab"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.