I am struggling after updating R to 4.6.1. I have dowloaded the latest INLA version but is failing even in test fitting. Below I show the simple model and the error message. Any idea? I use windows 10. Thank you very much.
library(INLA)
Cargando paquete requerido: Matrix
This is INLA_26.06.08 built 2026-06-08 14:07:21 UTC.
- See www.r-inla.org/contact-us for how to get help.
- List available models/likelihoods/etc with inla.list.models()
- Use inla.doc(<NAME>) to access documentation> inla.version()
R-INLA version ..........: 26.06.08
Date ....................: 2026-06-08
Maintainers .............: Havard Rue <hr...@r-inla.org>
: Finn Lindgren <finn.l...@gmail.com>
: Elias Teixeira Krainski <el...@r-inla.org>
Main web-page ...........: www.r-inla.org
Download-page ...........: inla.r-inla-download.org
Repository ..............: github.com/hrue/r-inla
Email support ...........: he...@r-inla.org
: r-inla-disc...@googlegroups.com
> # 6. Probar con un modelo simple
> set.seed(123)
> n <- 100
> x <- rnorm(n)
> y <- 2 + 1.5 * x + rnorm(n, sd = 0.5)
> fit_test <- inla(y ~ 1 + x,
+ family = "gaussian",
+ data = data.frame(y = y, x = x),
+ control.compute = list(dic = TRUE, waic = TRUE))
Error en inla.core.safe(formula = formula, family = family, contrasts = contrasts, :
The inla result collection failed.
The inla result collection failed.