Related Projects

Other packages and frameworks built around or using INLA methodology

INLAMSM
INLABMA
MIINLA
inlabru
excursions
INLA_DIST

Packages on CRAN Suggesting or Depending on INLA

The following R code identifies CRAN packages that suggest or depend on INLA using the library("cranly") package:

my.cran.inla <- function() { library("cranly") library("tools") p = clean_CRAN_db(CRAN_package_db()) m = length(p$package) idx.s = which(unlist(lapply(1:m, function(ii) any(p$suggests[[ii]] %in% "INLA")))) idx.d = which(unlist(lapply(1:m, function(ii) any(p$depends[[ii]] %in% "INLA")))) return(list(suggests = p$package[idx.s], depends = p$package[idx.d])) } my.cran.inla() ## $suggests ## [1] "abn" "AGPRIS" "BATSS" "BayesfMRI" "bigDM" ## [6] "bmstdr" "CRTspat" "DClusterm" "eCAR" "excursions" ## [11] "highriskzone" "INLABMA" "inlabru" "INLAjoint" "inlamemi" ## [16] "INLAspacetime" "makemyprior" "meta4diag" "MetricGraph" "nmaINLA" ## [21] "phyr" "PointedSDMs" "PrevMap" "rSPDE" "SimSurvey" ## [26] "SpatGC" "SpatialGEV" "SUMMER" "surveillance" "surveyPrev" ## [31] "survHE" "templateICAr" "voi" ## ## $depends ## character(0)
← Back to Home