List available model components, likelihoods, priors, etc. To read specific documentation for the individual elements, use inla.doc().

The list is cat'ed with ... arguments.

This function is EXPERIMENTAL.

inla.list.models(section = names(inla.models()), ...)

Arguments

section

The section(s) to list, missing section will list all sections. names(inla.models()) lists available sections.

...

Additional argument to cat

Value

Nothing is returned

Author

Havard Rue

Examples


if (FALSE) { # \dontrun{
inla.list.models("likelihood")
inla.list.models(c("prior", "group"))
inla.list.models(file=file("everything.txt"))

#Show detailed doc for a specific prior/likelihood/latent model
inla.doc("binomial")
} # }