Documentation

Curated entry points into INLA’s latent models, priors, likelihoods, and vignettes. Use the quick commands below to explore the full catalogue directly from R, or jump into highlighted topics.

Browse Function Reference Return to Learn More

Quick commands from R

Run these helpers inside R to list every model family, prior, or likelihood that ships with INLA.

# Discover the available sections (latent, likelihood, prior, ...)
inla.list.models()

# Focus on a specific family
inla.list.models("prior")

# Read the inline documentation for a component
inla.doc("loggamma")

Try swapping "prior" for "group", "hazard", "latent", "likelihood", "link", or "mix" to zoom in on that category.

Selected latent models

Popular latent specifications with working examples. Browse the full library at inla.r-inla-download.org/r-inla.org/doc/latent/.

Each model entry includes hyperparameter defaults, constraints, and the matching inla.doc() key.

Selected priors

Frequently used priors and their parameterisations. Explore every prior PDF at inla.r-inla-download.org/r-inla.org/doc/prior/.

Use inla.prior.control() to apply these priors directly inside your model definitions.

Selected likelihoods

Likelihood families with simulated examples and parameter details. Browse the full catalogue at inla.r-inla-download.org/r-inla.org/doc/likelihood/.

Combine likelihood entries with the latent model listings above to assemble complete joint models.

Key vignettes & tutorials

Need the raw data or code?

The function reference includes reproducible examples plus datasets such as Scotland, Seeds, and Munich. You can load them directly in R after attaching the INLA package:

library(INLA)
data("Scotland")
str(Scotland)

Looking for something specific? Use the search box on the function reference page, or run inla.doc("<keyword>") in R.