Nothing
suppressPackageStartupMessages({
library(INLAtools)
library(INLA)
})
R <- Sparse(crossprod(diff(diag(10))))
R
cmodel <- cgeneric("generic0", R = R, param = c(1, 0.01))
cfam <- list(hyper = list(prec = list(initial = 10, fixed = TRUE)))
fit <- inla(formula = y ~ 0 + f(i, model = cmodel),
data = data.frame(y = NA, i = 1:nrow(R)),
control.family = cfam)
stopifnot(isTRUE(fit$ok))
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.