summary.egf {epigrowthfit} | R Documentation |
Model Summaries
Description
Summarizes fitted values of top level nonlinear model parameters and gathers diagnostic information that can be used to quickly assess convergence of the optimizer.
Usage
## S3 method for class 'egf'
summary(object, ...)
Arguments
object |
an |
... |
additional arguments passed from or to other methods. |
Value
A list inheriting from class summary.egf
, with elements:
fitted |
a numeric matrix. Each column is the result of applying
|
convergence |
an integer code returned by the optimizer, with 0 indicating successful convergence within the specified absolute or relative tolerance. |
value , gradient |
numeric vectors giving the value and gradient of the negative log marginal likelihood function at the parameter vector returned by the optimizer. |
hessian |
a logical flag indicating whether the Hessian matrix of the
negative log marginal likelihood function is positive definite
at the parameter vector returned by the optimizer. |
See Also
The generic function summary
.
Examples
example("egf", package = "epigrowthfit")
zz <- summary(m1)
str(zz)