fitmle.cov {scaRabee} | R Documentation |
Computation of the Covariance Matrix
Description
fitmle.cov
is a secondary function called during estimation runs. It
performs multiple tasks after completion of the model optimization by
fitmle
:
1- It computes the matrix of covariance (as described by D'Argenio and
Schumitzky) by calling get.cov.matrix
and derives some related
statistics: correlation matrix, coefficient of variation of parameter
estimates, confidence intervals and Akaike Information criterion,
2- It estimates secondary parameters and computes the coefficient of variation of those estimates, as well as the confidence intervals.
fitmle.cov
is typically not called directly by users.
Usage
fitmle.cov(problem = NULL,
Fit = NULL)
Arguments
problem |
A list containing the following levels:
|
Fit |
A list of containing the following levels:
|
Value
Return a list containing the following elements:
- estimations
The vector of final parameter estimates.
- fval
The minimal value of the objective function.
- cov
The matrix of covariance for the parameter estimates.
- orderedestimations
A data.frame with the same structure as
problem$init
but only containing the sorted estimated estimates. The sorting is performed byorder.param.list
.- cor
The upper triangle of the correlation matrix for the parameter estimates.
- cv
The coefficients of variations for the parameter estimates.
- ci
The confidence interval for the parameter estimates.
- AIC
The Akaike Information Criterion.
- sec
A list of data related to the secondary parameters, containing the following elements:
- estimates
The vector of secondary parameter estimates calculated using the initial estimates of the primary model parameters.
- estimates
The vector of secondary parameter estimates calculated using the final estimates of the primary model parameters.
- names
The vector of names of the secondary parameter estimates.
- pder
The matrix of partial derivatives for the secondary parameter estimates.
- cov
The matrix of covariance for the secondary parameter estimates.
- cv
The coefficients of variations for the secondary parameter estimates.
- ci
The confidence interval for the secondary parameter estimates.
Author(s)
Sebastien Bihorel (sb.pmlab@gmail.com)
Pawel Wiczling
References
D.Z. D'Argenio and A. Schumitzky. ADAPT II User's Guide: Pharmacokinetic/ Pharmacodynamic Systems Analysis Software. Biomedical Simulations Resource, Los Angeles, 1997.