R/get_omega.R
get_omega.RdExtract variability parameter estimates from a NONMEM output object.
get_omega(x, output = "est", sigdig = 6, sep = "-", est.step = NULL)A NONMEM output object generated using read_nm.
A flag specifying the matrix or matrices to be output. Valid flag values are est (the default),
se, rse, cor, cse, 95ci, or all.
Specifies the number of significant digits to be provided (default=6).
Specifies the separator character to use for 95% confidence intervals (default="-").
Specifies which estimation step to return parameters from (default is the last).
A symmetrical matrix, or a list of symmetrical matrices if all is specified.
if (FALSE) { # \dontrun{
nmOutput <- read_nm("run315.xml")
omegas <- get_omega(nmOutput)
omegaRSEs <- get_omega(nmOutput, "rse")
} # }