Nothing
jagsModel <-
function(file, data = sys.frame(sys.parent()),
inits, n.chains = 1, n.adapt = 1000, quiet = FALSE)
{
requireNamespace("rjags")
if (is.function(file) || inherits(file, "custommodel")) {
if (is.function(file))
file <- match.fun(file)
file <- write.jags.model(file)
on.exit(try(clean.jags.model(file)))
}
n.clones <- dclone::nclones.list(as.list(data))
res <- rjags::jags.model(file=file, data=data,
inits=inits, n.chains=n.chains,
n.adapt=n.adapt, quiet=quiet)
if (!is.null(n.clones) && n.clones > 1) {
attr(res, "n.clones") <- n.clones
}
res
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.