Extract residual variability parameter estimates from a NONMEM output object.
Source:R/get_sigma.R
get_sigma.RdExtract residual variability parameter estimates from a NONMEM output object.
Arguments
- x
A NONMEM output object generated using
read_nm.- output
A flag specifying the matrix or matrices to be output. Valid flag values are
est(the default),se,rse,cor,cse,95ci, orall.- 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).
Details
Output options are as follows:
est returns the estimated
SIGMAvariance-covariance matrix.se returns the standard errors for the estimated
SIGMAvariance-covariance matrix.rse returns the relative standard errors for the estimated
SIGMAvariance-covariance matrix (se/est*100).cor returns the correlation matrix matrix.
cse returns the standard errors for the correlation matrix.
95ci returns the asymptotic 95% confidence intervals for the elements of the
SIGMAvariance-covariance matrix (est +/- 1.96*se).all returns all available
SIGMAmatrices.
Author
Justin Wilkins, justin.wilkins@occams.com
Examples
if (FALSE) { # \dontrun{
nmOutput <- read_nm("run315.xml")
sigmas <- get_sigma(nmOutput)
sigmaRSEs <- get_sigma(nmOutput, "rse")
} # }