save_options: Save Options Table

View source: R/option.R

save_optionsR Documentation

Save Options Table

Description

Stores a matrix of options into a file, primarily for archival or subsequent analysis.

Usage

save_options(options_table, file_name)

Arguments

options_table

A matrix containing option values.

file_name

A character string specifying the desired file name for saving the options.

Value

No return value, called for side effects

Examples

tree <- dexisensitivity::masc2
option <- create_options(tree, num_options=3, seed = 42)
save_options(option,paste0(tempdir(),"\\save_options.tab"))
file.remove(paste0(tempdir(),"\\save_options.tab"))


dexisensitivity documentation built on Oct. 30, 2024, 1:08 a.m.