inla.rerun {INLA} | R Documentation |
Rerun inla
on an
inla-object (output from link{inla}
)
inla.rerun(object, plain=FALSE)
object |
An |
plain |
Logical. If |
This function will take the result in object
,
and rerun inla
again.
If plain
is FALSE
, start the optimization
from the mode in object
so that
we can obtain an improvement the mode for the hyperparameters.
Otherwise, start from the same configuration
as for object
.
The returned value is an inla
-object.
r = inla(y ~ 1, data = data.frame(y=1:10)) r = inla.rerun(r)