This is similar to the function network.run
, except this is used for the unrelated mean effects model.
ume.network.run(
network,
inits = NULL,
n.chains = 3,
max.run = 1e+05,
setsize = 10000,
n.run = 50000,
conv.limit = 1.05,
extra.pars.save = NULL
)
Data that is put into rjags function jags.model
Initial values that are either specified by the user or generated as a default
Parameters that are saved. Add more parameters in extra.pars.save if other variables are desired
Half of the converged sequence is thrown out as a burnin
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
MCMC samples stored using jags. The returned samples have the form of mcmc.list and can be directly applied to coda functions
Maximum Gelman and Rubin's convergence diagnostic calculated for the final sample
Contains deviance statistics such as pD (effective number of parameters) and DIC (Deviance Information Criterion)
network object created from ume.network.data
function
Initial values for the parameters being sampled. If left unspecified, program will generate reasonable initial values.
Number of chains to run
Maximum number of iterations that user is willing to run. If the algorithm is not converging, it will run up to max.run
iterations before printing a message that it did not converge
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.
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
Convergence limit for Gelman and Rubin's convergence diagnostic. Point estimate is used to test convergence of parameters for study effect (eta), relative effect (d), and heterogeneity (log variance (logvar)).
Parameters that user wants to save besides the default parameters saved. See code using cat(network$code)
to see which parameters can be saved.
network <- with(thrombolytic, {
ume.network.data(Outcomes, Study, Treat, N = N, response = "binomial")
})
# \donttest{
result <- ume.network.run(network, n.run = 10000)
# }
Run the code above in your browser using DataLab