read_nmext {mrgsolve} | R Documentation |
Extract estimates from NONMEM ext file
Description
This function retrieves NONMEM estimates for use in the mrgsolve model when
$NMEXT
is invoked. See nmext()
.
Usage
read_nmext(
run = NA_real_,
project = getwd(),
file = paste0(run, ".ext"),
path = NULL,
read_fun = c("data.table", "read.table"),
index = "last"
)
Arguments
run |
a run number or run identifier |
project |
the NONMEM project directory |
file |
the |
path |
full path and file name for |
read_fun |
function to read the |
index |
selects the table number whose results will be returned;
use value "last" to select the last table in the |
Value
A list with param, omega, and sigma in a format ready to be used to update a model object.
Examples
project <- system.file("nonmem", package = "mrgsolve")
est <- read_nmext(1005, project = project)
est$param
est$omega
est$sigma
est <- read_nmext(2005, project = project, index = 3)