Nothing
h_get_mcmc_options <- function(samples = 4, burnin = 50, fixed = TRUE) {
if (fixed) {
rng_kind <- "Mersenne-Twister"
rng_seed <- 1
} else {
rng_kind <- NA
rng_seed <- NA
}
McmcOptions(
burnin = burnin,
samples = samples,
rng_kind = rng_kind,
rng_seed = rng_seed
)
}
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.