get_theta {pmxTools} | R Documentation |
Extract structural model parameter estimates and associated information from a NONMEM output object.
Description
Extract structural model parameter estimates and associated information from a NONMEM output object.
Usage
get_theta(x, output = "est", sigdig = 6, sep = "-", est.step = NULL)
Arguments
x |
A NONMEM output object generated using |
output |
A flag specifying the matrix or matrices to be output. Valid flag values are |
sigdig |
Specifies the number of significant digits to be provided (default=6). |
sep |
Specifies the separator character to use for 95% confidence intervals (default="-"). |
est.step |
Specifies which estimation step to return parameters from (default is the last). |
Value
A named vector of NONMEM model parameter estimates, or in the case of all
,
a list of named vectors.
est
returns a vector of THETA values.
se
returns a vector of THETA standard errors.
rse
returns a vector of THETA relative standard errors (se/est*100).
95ci
returns a vector of the asymptotic 95% confidence intervals for the elements of THETA (est +/- 1.96*se).
all
returns all available THETA information as a list of named vectors.
Author(s)
Justin Wilkins, justin.wilkins@occams.com
See Also
NONMEM (https://www.iconplc.com/innovation/nonmem/)
Examples
## Not run:
nmOutput <- read_nm("run315.xml")
thetas <- get_theta(nmOutput)
## End(Not run)