get_theta | R Documentation |
Extract structural model parameter estimates and associated information from a NONMEM output object.
get_theta(x, output = "est", sigdig = 6, sep = "-", est.step = NULL)
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). |
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.
Justin Wilkins, justin.wilkins@occams.com
NONMEM (https://www.iconplc.com/innovation/nonmem/)
## Not run:
nmOutput <- read_nm("run315.xml")
thetas <- get_theta(nmOutput)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.