get_shrinkage {pmxTools} | R Documentation |
Extract shrinkage estimates from a NONMEM output object.
Description
Extract shrinkage estimates from a NONMEM output object.
Usage
get_shrinkage(x, output = "eta", type = "sd", sigdig = 3, est.step = NULL)
Arguments
x |
A NONMEM output object generated using |
output |
A flag specifying the shrinkage estimates to be output. Valid flag
values are |
type |
Specifies the type of shrinkage to report. Valid values are |
sigdig |
Specifies the number of significant digits to be provided (default=3). |
est.step |
Specifies which estimation step to return parameters from (default is the last). |
Value
A named vector of NONMEM shrinkage estimates, or in the case of all
,
a list of named vectors.
eta
returns a vector of ETA shrinkages, as reported by NONMEM.
epsilon
returns EPSILON shrinkage, as reported by NONMEM.
all
returns both ETA and EPSILON shrinkage estimates as a list of 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")
shr <- get_shrinkage(nmOutput, output="all")
## End(Not run)