Description Usage Arguments Value Examples
This is the core function that runs the model in our program. Before running this function, we need to specify data, prior,
JAGS code, etc. using nof1.data
.
1 2 3 4 5 6 7 8 9 10 |
nof1 |
nof1 object created from |
inits |
Initial values for the parameters being sampled. If left unspecified, program will generate reasonable initial values. |
n.chains |
Number of chains to run |
max.run |
Maximum number of iterations that user is willing to run. If the algorithm is not
converging, it will run up to |
setsize |
Number of iterations that are run between convergence checks. If the algorithm converges fast, user wouldn't need a big setsize. The number that is printed between each convergence checks is the gelman-rubin diagnostics and we would want that to be below the conv.limit the user specifies. |
n.run |
Final number of iterations that the user wants to store. If after the algorithm converges, user wants less number of iterations, we thin the sequence. If the user wants more iterations, we run extra iterations to reach the specified number of runs |
conv.limit |
Convergence limit for Gelman and Rubin's convergence diagnostic. |
extra.pars.save |
Parameters that user wants to save besides the default parameters saved. See code
using |
nof1 |
nof1 object |
inits |
Initial values that are either specified by the user or generated as a default |
pars.save |
Parameters that are saved. Add more parameters in extra.pars.save if other variables are desired |
data_rjags |
Data that is put into rjags function |
burnin |
Half of the converged sequence is thrown out as a burnin |
n.thin |
If the number of iterations user wants (n.run) is less than the number of converged sequence after burnin, we thin the sequence and store the thinning interval |
samples |
MCMC samples stored using jags. The returned samples have the form of mcmc.list and can be directly applied to coda functions |
max.gelman |
Maximum Gelman and Rubin's convergence diagnostic calculated for the final sample |
1 2 3 4 5 6 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.