run_nm_single | R Documentation |
Run nm objects. Uses system_nm()
to submit the cmd()
value of object.
run_nm_single( m, ignore.stdout = FALSE, ignore.stderr = FALSE, quiet = getOption("quiet_run"), intern = getOption("intern"), force = FALSE, cache_ignore_cmd = FALSE, cache_ignore_ctl = FALSE, cache_ignore_data = FALSE, return_cmd_only = FALSE )
m |
An nm object. |
ignore.stdout |
Logical (default= |
ignore.stderr |
Logical (default= |
quiet |
Logical (default= |
intern |
Logical. |
force |
Logical (default = |
cache_ignore_cmd |
Logical (default = |
cache_ignore_ctl |
Logical (default = |
cache_ignore_data |
Logical (default = |
return_cmd_only |
Logical. Instead of running |
In grid environment it is recommended to run nm_tran()
via the
RStudio 'Addin' prior to executing this code.
By default, when highlighting code and evaluating it via an RStudio app,
run_nm()
will not execute and will just return the nm
object.
For vector nm
objects of length more than 1, all runs will be launched at
the same time. This could overwhelm resources if not in a grid
environment. In this case see run_nm()
for batched execution of a
vector valued nm
object.
m
with job_info
fields populated.
nm_tran()
## requires NONMEM to be installed ## Not run: m1 <- new_nm( run_id = "m1", based_on = "staging/Models/ADVAN2.mod", data_path = "DerivedData/data.csv" ) %>% cmd("execute {ctl_name} -dir={run_dir}") %>% fill_input() %>% run_nm() ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.