continue {synlik} | R Documentation |
Continuing estimation.
Description
Generic function, that given the results of an estimation procedure (ex. MCMC or maximum likelihood optimization) continues the procedure for some more iterations.
Usage
continue(object, ...)
## S4 method for signature 'smcmc'
continue(object, niter = object@niter, nsim = object@nsim,
propCov = object@propCov, targetRate = object@targetRate,
recompute = object@recompute, multicore = object@multicore,
ncores = object@ncores, cluster = NULL, control = object@control, ...)
Arguments
object |
An object representing the results of an estimation procedure which we wish to continue. For example it might represents an MCMC chain. |
... |
additional arguments to be passed to |
niter |
see |
nsim |
see |
propCov |
see |
targetRate |
see |
recompute |
see |
multicore |
see |
ncores |
see |
cluster |
an object of class |
control |
see |
Details
When is("smcmc", object) == TRUE
continues MCMC estimation of an object of class smcmc
. All input parameters are defaulted to the corresponding
slots in the input object, with the exception of cluster. The chain restarts were it ended, burn-in is set to zero, the
same prior (if any) is used.
Value
An object of the same class as object
, where the results of the estimation have been updated.
See Also
For examples, see smcmc-class
.