powered by
Extract residual variability parameter estimates from a NONMEM output object.
get_sigma(x, output = "est", sigdig = 6, sep = "-", est.step = NULL)
A symmetrical matrix, or a list of symmetrical matrices if all is specified.
all
A NONMEM output object generated using read_nm.
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.
est
se
rse
cor
cse
95ci
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).
Justin Wilkins, justin.wilkins@occams.com
Output options are as follows:
est returns the estimated SIGMA variance-covariance matrix.
SIGMA
se returns the standard errors for the estimated SIGMA variance-covariance matrix.
rse returns the relative standard errors for the estimated SIGMA variance-covariance matrix (se/est*100).
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 SIGMA variance-covariance matrix (est +/- 1.96*se).
est +/- 1.96*se
all returns all available SIGMA matrices.
NONMEM (https://www.iconplc.com/solutions/technologies/nonmem)
if (FALSE) { nmOutput <- read_nm("run315.xml") sigmas <- get_sigma(nmOutput) sigmaRSEs <- get_sigma(nmOutput, "rse") }
Run the code above in your browser using DataLab