jags.module.RdA JAGS module is a dynamically loaded library that extends the functionality of JAGS. These functions load and unload JAGS modules and show the names of the currently loaded modules.
load.module(name, path, quiet=FALSE)
unload.module(name, quiet=FALSE)
list.modules()list.modules()
#> [1] "basemod" "bugs"
load.module("glm")
#> module glm loaded
list.modules()
#> [1] "basemod" "bugs" "glm"
unload.module("glm")
#> Module glm unloaded
list.modules()
#> [1] "basemod" "bugs"