load_nm_run.RdLoads NONMEM run results data from either a folder or a *.tar.gz archive file.
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") # }