nIter | R Documentation |
Returns the number of iterations for iterative models. The default
method assumes presence of a component iterations
in x
.
nIter(x, ...)
## Default S3 method:
nIter(x, ...)
x |
a statistical model, or a result of maximisation, created
by |
... |
further arguments for methods |
This is a generic function. The default method returns the component
x$iterations
.
numeric, number of iterations. Note that ‘iteration’ may mean different things for different optimizers.
Ott Toomet
maxLik
, maxNR
## Estimate the exponential distribution parameter:
t <- rexp(100, 2)
loglik <- function(theta) sum(log(theta) - theta*t)
## Estimate with numeric gradient and numeric Hessian
a <- maxNR(loglik, start=1)
nIter(a)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.