update | R Documentation |
This function updates a JAGS model created by created by function jags
in package jagsUI
for a specified number of iterations.
## S3 method for class 'jagsUI'
update(object, parameters.to.save=NULL, n.adapt=NULL,
n.iter, n.thin=NULL, modules=c('glm'), factories=NULL, DIC=NULL,
codaOnly=FALSE, verbose=TRUE, ...)
object |
A |
parameters.to.save |
Character vector of the names of the parameters in the model which should be monitored. Defaults to the saved parameter set from the original model run. |
n.adapt |
Number of iterations to run in the |
n.iter |
Number of iterations to update for each chain. |
n.thin |
Thinning rate. Must be a positive integer. Defaults to the thinning rate of the original model run. |
modules |
List of JAGS modules to load before analysis. By default only module 'glm' is loaded (in addition to 'basemod' and 'bugs'). To force no additional modules to load, set |
factories |
Optional character vector of factories to enable or disable, in the format <factory> <type> <setting>. For example, to turn |
DIC |
Option to report DIC and the estimated number of parameters (pD). Defaults to the same setting as the original model to updated. |
codaOnly |
Optional character vector of parameter names for which you do NOT want to calculate detailed statistics. This may be helpful when you have many output parameters (e.g., predicted values) and you want to save time. For these parameters, only the mean value will be calculated but the mcmc output will still be found in $sims.list and $samples. |
verbose |
If set to FALSE, all text output in the console will be suppressed as the function runs (including most warnings). |
... |
Further arguments pass to or from other methods. |
Ken Kellner contact@kenkellner.com.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.