Description Usage Arguments Details Value Author(s) Examples
List SPDE models supported by inla.spde objects
1 2 3 | inla.spde.models(function.names=FALSE)
inla.spde1.models()
inla.spde2.models()
|
function.names |
If |
Returns a list of available SPDE model type name lists, one for each
inla.spde model class (currently inla.spde1
and
inla.spde2
).
List of available SPDE model type name lists.
Finn Lindgren finn.lindgren@gmail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Display help for each supported inla.spde2 model:
for (model in inla.spde2.models())
print(help(paste("inla.spde2.", model, sep="")))
## Display help for each supported inla.spde* model:
models = inla.spde.models()
for (type in names(models))
for (model in models[[type]])
print(help(paste("inla.", type, ".", model, sep="")))
## Display help for each supported inla.spde* model (equivalent to above):
for (model in inla.spde.models(function.names=TRUE))
print(help(model))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.