Summarizes fitted values of top level nonlinear model parameters and gathers diagnostic information that can be used to quickly assess convergence of the optimizer.
# S3 method for egf
summary(object, ...)
A list inheriting from class summary.egf
, with elements:
a numeric matrix. Each column is the result of applying
summary.default
to a numeric vector listing the fitted
values of a top level nonlinear model parameters. Fitted values are
retrieved by fitted.egf
.
an integer code returned by the optimizer, with 0 indicating successful convergence within the specified absolute or relative tolerance.
numeric vectors giving the value and gradient of the negative log marginal likelihood function at the parameter vector returned by the optimizer.
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. NA
means that the matrix was not computed by egf
,
either because se = TRUE
was not passed in the function
call or because an error was thrown during computation.
an egf
object.
additional arguments passed from or to other methods.
The generic function summary
.
example("egf", package = "epigrowthfit")
zz <- summary(m1)
str(zz)
Run the code above in your browser using DataLab