load_nm_run | R Documentation |
Loads NONMEM run results data from either a folder or a archive file (tar.gz, tgz or zip).
load_nm_run(
path,
temp_directory = str_c(tempdir(), "/pmxploit"),
load_tables = TRUE,
read_initial_values = TRUE,
keep_tempfiles = FALSE,
extract_everything = FALSE,
dataset_separator = NA,
dataset_na_string = ".",
update_progress = NULL,
verbose = FALSE
)
path |
character. Run folder or archive file path. |
temp_directory |
(optional) character. When |
load_tables |
logical. If |
read_initial_values |
logical. If |
keep_tempfiles |
logical. If |
extract_everything |
logical. If |
dataset_separator |
(optional) character. Character used as column
separator in the dataset. Default is |
dataset_na_string |
character. Character string corresponding to missing
values in the dataset. Default is |
update_progress |
(otional) function of the form |
verbose |
logical. If |
A NONMEM run object. See load_nm_run_directory
.
## Not run:
run <- load_nm_run("path/to/my/run_folder")
run <- load_nm_run("path/to/my/run_archive.tar.gz")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.