R-INLA implementation of the rational SPDE approach
David Bolin and Alexandre B. Simas
Created: 2021-10-30. Last modified: 2024-11-14.
Source:vignettes/rspde_inla.Rmd
rspde_inla.Rmd
Introduction
In this vignette we will present the R-INLA
implementation of
the rational SPDE approach. For theoretical details we refer the reader
to the Rational approximation with the
rSPDE
package vignette and to Bolin, Simas, and Xiong (2023).
We begin by providing a step-by-step illustration on how to use our implementation. To this end we will consider a real world data set that consists of precipitation measurements from the Paraná region in Brazil.
After the initial model fitting, we will show how to change some parameters of the model. In the end, we will also provide an example in which we have replicates.
It is important to mention that one can improve the performance by
using the PARDISO solver. Please, go to https://www.pardiso-project.org/r-inla/#license to apply
for a license. Also, use inla.pardiso()
for instructions on
how to enable the PARDISO sparse library.
Example with real data
To illustrate our implementation of rSPDE
in R-INLA
we will consider a
dataset available in R-INLA
. This data has
also been used to illustrate the SPDE approach, see for instance the
book Advanced
Spatial Modeling with Stochastic Partial Differential Equations Using R
and INLA and also the vignette Spatial
Statistics using R-INLA and Gaussian Markov random fields. See also
Lindgren, Rue, and Lindström (2011) for
theoretical details on the standard SPDE approach.
The data consist of precipitation measurements from the Paraná region in Brazil and were provided by the Brazilian National Water Agency. The data were collected at 616 gauge stations in Paraná state, south of Brazil, for each day in 2011.
An rSPDE model for precipitation
We will follow the vignette Spatial
Statistics using R-INLA and Gaussian Markov random fields. As
precipitation data are always positive, we will assume it is Gamma
distributed. R-INLA
uses the following parameterization of the Gamma distribution,
In this parameterization, the distribution has expected value
and variance
,
where
is a dispersion parameter.
In this example will be modeled using a stochastic model that includes both covariates and spatial structure, resulting in the latent Gaussian model for the precipitation measurements
where
denotes the measurement taken at location
,
are covariates,
is a mean-zero Gaussian Matérn field, and
is a vector containing all parameters of the model, including smoothness
of the field. That is, by using the rSPDE
model we will
also be able to estimate the smoothness of the latent field.
Examining the data
We will be using R-INLA
. To install R-INLA
go to R-INLA Project.
We begin by loading some libraries we need to get the data and build the plots.
Let us load the data and the border of the region
The data frame contains daily measurements at 616 stations for the year 2011, as well as coordinates and altitude information for the measurement stations. We will not analyze the full spatio-temporal data set, but instead look at the total precipitation in January, which we calculate as
Y <- rowMeans(PRprec[, 3 + 1:31])
In the next snippet of code, we extract the coordinates and altitudes and remove the locations with missing values.
Let us build plot the precipitation observations using
ggplot
:
ggplot() +
geom_point(aes(
x = coords[, 1], y = coords[, 2],
colour = Y
), size = 2, alpha = 1) +
geom_path(aes(x = PRborder[, 1], y = PRborder[, 2])) +
geom_path(aes(x = PRborder[1034:1078, 1], y = PRborder[
1034:1078,
2
]), colour = "red") +
scale_color_viridis()
The red line in the figure shows the coast line, and we expect the distance to the coast to be a good covariate for precipitation. This covariate is not available, so let us calculate it for each observation location:
Now, let us plot the precipitation as a function of the possible covariates:
Creating the rSPDE model
To use the R-INLA
implementation of the rSPDE
model we need to load the
functions:
The rSPDE
-INLA
implementation is very
reminiscent of R-INLA
,
so its usage should be straightforward for R-INLA
users. For
instance, to create a rSPDE
model, one would use
rspde.matern()
in place of
inla.spde2.matern()
. To create an index, one should use
rspde.make.index()
in place of
inla.spde.make.index()
. To create the A
matrix, one should use rspde.make.A()
in place of
inla.spde.make.A()
, and so on.
The main differences when comparing the arguments between the
rSPDE
-INLA
implementation and the standard
SPDE implementation in R-INLA
, are the
nu
and rspde.order
arguments, which are
present in rSPDE
-INLA
implementation. We will
see below how use these arguments.
Mesh
We can use fmesher
for creating the mesh. We begin by
loading the fmesher
package:
Let us create a mesh which is based on a non-convex hull to avoid adding many small triangles outside the domain of interest:
prdomain <- fm_nonconvex_hull(coords, -0.03, -0.05, resolution = c(100, 100))
prmesh <- fm_mesh_2d(boundary = prdomain, max.edge = c(0.45, 1), cutoff = 0.2)
plot(prmesh, asp = 1, main = "")
lines(PRborder, col = 3)
points(coords[, 1], coords[, 2], pch = 19, cex = 0.5, col = "red")
The observation matrix
We now create the
matrix, that connects the mesh to the observation locations and then
create the rSPDE
model.
For this task, as we mentioned earlier, we need to use an
rSPDE
specific function, whose name is very reminiscent to
R-INLA
’s standard SPDE
approach, namely rspde.make.A()
(in place of R-INLA
’s
inla.spde.make.A()
). The reason for the need of this
specific function is that the size of the
matrix depends on the order of the rational approximation. The details
can be found in the introduction of the Rational approximation with the rSPDE
package vignette.
The default order is 2 for our covariance-based rational
approximation. As mentioned in the introduction of the Rational approximation with the rSPDE
package vignette, an approximation of order 2 in the
covariance-based rational approximation has approximately the same
computational cost as the operator-based rational approximation of order
1.
Recall that the latent process
is a solution of
where
.
We want to estimate all three parameters
and
,
which is the default option of
the rSPDE
-INLA
implementation. However, there
is also an option to fix the smoothness parameter
to some predefined value and only estimate
and
.
This will be discussed later.
In this first example we will assume we want a rational approximation
of order 1. To this end we can use the rspde.make.A()
function. Since we will assume order 1 and that we want to estimate
smoothness, which are the default options in this function, the required
parameters are simply the mesh and the locations:
Abar <- rspde.make.A(mesh = prmesh, loc = coords)
Setting up the rSPDE model
To set up an rSPDE
model, all we need is the mesh. By
default it will assume that we want to estimate the smoothness parameter
and to do a covariance-based rational approximation of order 2.
Later in this vignette we will also see other options for setting up
rSPDE
models such as keeping the smoothness parameter fixed
and/or increasing the order of the covariance-based rational
approximation.
Therefore, to set up a model all we have to do is use the
rspde.matern()
function:
rspde_model <- rspde.matern(mesh = prmesh)
Note that this function is very reminiscent of R-INLA
’s
inla.spde2.matern()
function. This is a pattern we have
tried to keep consistent in the package: All the rSPDE
versions of some R-INLA
function will
either replace inla
or inla.spde
or
inla.spde2
by rspde
.
The inla.stack
Since the covariates are already evaluated at the observation
locations, we only want to apply the
matrix to the spatial effect and not the fixed effects. We can use the
inla.stack()
function.
The difference, however, is that we need to use the function
rspde.make.index()
(in place of the standard
inla.spde.make.index()
) to create the index.
If one is using the default options, that is, to estimate the
smoothness parameter
and to do a rational approximation of order 2, the usage of
rspde.make.index()
is identical to the usage of
inla.spde.make.index()
:
mesh.index <- rspde.make.index(name = "field", mesh = prmesh)
We can then create the stack in a standard manner:
stk.dat <- inla.stack(
data = list(y = Y), A = list(Abar, 1), tag = "est",
effects = list(
c(
mesh.index
),
list(
seaDist = inla.group(seaDist),
Intercept = 1
)
)
)
Here the observation matrix is applied to the spatial effect and the intercept while an identity observation matrix, denoted by , is applied to the covariates. This means the covariates are unaffected by the observation matrix.
The observation matrices in
are used to link the corresponding elements in the effects-list to the
observations. Thus in our model the latent spatial field
mesh.index
and the intercept are linked to the
log-expectation of the observations,
i.e. ,
through the
-matrix.
The covariates, on the other hand, are linked directly to
.
The stk.dat
object defined above implies the following
principal linkage between model components and observations
will then be used in the observation-likelihood,
Model fitting
We will build a model using the distance to the sea
as a covariate through an improper CAR(1) model with
,
which R-INLA
calls a
random walk of order 1.
Here -1
is added to remove R’s implicit intercept, which
is replaced by the explicit +Intercept
from when we created
the stack.
To fit the model we proceed as in the standard SPDE approach and we
simply call inla()
.
rspde_fit <- inla(f.s,
family = "Gamma", data = inla.stack.data(stk.dat),
verbose = FALSE,
control.inla = list(int.strategy = "eb"),
control.predictor = list(A = inla.stack.A(stk.dat), compute = TRUE),
num.threads = "1:1"
)
INLA results
We can look at some summaries of the posterior distributions for the parameters, for example the fixed effects (i.e. the intercept) and the hyper-parameters (i.e. dispersion in the gamma likelihood, the precision of the RW1, and the parameters of the spatial field):
summary(rspde_fit)
## Time used:
## Pre = 0.376, Running = 7, Post = 0.0668, Total = 7.44
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 1.941 0.04 1.862 1.941 2.02 1.941 0
##
## Random effects:
## Name Model
## seaDist RW1 model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant
## Precision-parameter for the Gamma observations 14.68 1.046 12.72
## Precision for seaDist 7734.96 4350.031 2491.42
## Theta1 for field -2.80 1.993 -7.41
## Theta2 for field 1.77 0.424 1.07
## Theta3 for field 1.11 1.724 -1.47
## 0.5quant 0.975quant mode
## Precision-parameter for the Gamma observations 14.648 1.68e+01 14.585
## Precision for seaDist 6720.602 1.90e+04 5116.962
## Theta1 for field -2.541 1.73e-01 -1.218
## Theta2 for field 1.732 2.71e+00 1.536
## Theta3 for field 0.885 5.09e+00 -0.249
##
## Marginal log-Likelihood: -1254.04
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
Let , and . In terms of the SPDE where , we have that and by default The number 2 comes from the upper bound for , which will be discussed later in this vignette.
In general, we have where is the value of the upper bound for the smoothness parameter .
Another choice for prior for is a truncated lognormal distribution and will also be discussed later in this vignette.
rSPDE
-INLA
results
We can obtain outputs with respect to parameters in the original
scale by using the function rspde.result()
:
result_fit <- rspde.result(rspde_fit, "field", rspde_model)
## Warning in rspde.result(rspde_fit, "field", rspde_model): the mean or mode of
## nu is very close to nu.upper.bound, please consider increasing nu.upper.bound,
## and refitting the model.
summary(result_fit)
## mean sd 0.025quant 0.5quant 0.975quant mode
## tau 0.21883 0.339666 0.000634063 0.0837106 1.16917 5.85265e-05
## kappa 6.44421 3.173540 2.939560000 5.5721600 14.92140 4.25116e+00
## nu 1.32225 0.504273 0.377433000 1.3938800 1.98717 1.99430e+00
As mentioned above, when we create the model object with
rspde.matern()
, we must choose an upper bound for
nu
by using the argument nu.upper.bound
. If
such an argument is not passed, the default value of 2
will
be used. However, if the mean or mode of nu
is too close to
nu.upper.bound
, a warning will be given suggesting the user
to increase nu.upper.bound
and refit the data.
To create plots of the posterior marginal densities, we can use the
gg_df()
function, which creates
ggplot2
-friendly data frames. The following figure shows
the posterior marginal densities of the three parameters using the
gg_df()
function.
posterior_df_fit <- gg_df(result_fit)
ggplot(posterior_df_fit) + geom_line(aes(x = x, y = y)) +
facet_wrap(~parameter, scales = "free") + labs(y = "Density")
This function is reminiscent to the inla.spde.result()
function with the main difference that it has the summary()
and plot()
methods implemented.
We can also obtain the results for the matern
parameterization by setting the parameterization
argument
to matern
:
result_fit_matern <- rspde.result(rspde_fit, "field",
rspde_model, parameterization = "matern")
## Warning in rspde.result(rspde_fit, "field", rspde_model, parameterization =
## "matern"): the mean or mode of nu is very close to nu.upper.bound, please
## consider increasing nu.upper.bound, and refitting the model.
summary(result_fit_matern)
## mean sd 0.025quant 0.5quant 0.975quant mode
## std.dev 0.471348 0.716209 0.190343 0.337536 1.723410 0.319758
## range 0.504196 0.182166 0.194936 0.486924 0.919692 0.432577
## nu 1.322250 0.504273 0.377433 1.393880 1.987170 1.994300
In a similar manner, we can obtain posterior plots on the
matern
parameterization:
Predictions
Let us now obtain predictions (i.e. do kriging) of the expected precipitation on a dense grid in the region.
We begin by creating the grid in which we want to do the predictions.
To this end, we can use the rspde.mesh.projector()
function. This function has the same arguments as the function
inla.mesh.projector()
, with the only difference being that
the rSPDE
version also has an argument nu
and
an argument rspde.order
. Thus, we proceed in the same
fashion as we would in R-INLA
’s standard SPDE
implementation:
nxy <- c(150, 100)
projgrid <- rspde.mesh.projector(prmesh,
xlim = range(PRborder[, 1]),
ylim = range(PRborder[, 2]), dims = nxy
)
This lattice contains 150 × 100 locations. One can easily change the
resolution of the kriging prediction by changing nxy
. Let
us find the cells that are outside the region of interest so that we do
not plot the estimates there.
Let us plot the locations that we will do prediction:
coord.prd <- projgrid$lattice$loc[xy.in, ]
plot(coord.prd, type = "p", cex = 0.1)
lines(PRborder)
points(coords[, 1], coords[, 2], pch = 19, cex = 0.5, col = "red")
Now, there are a few ways we could calculate the kriging prediction. The simplest way is to evaluate the mean of all individual random effects in the linear predictor and then to calculate the exponential of their sum (since ). A more accurate way is to calculate the prediction jointly with the estimation, which unfortunately is quite computationally expensive if we do prediction on a fine grid. However, in this illustration, we proceed with this option to show how one can do it.
To this end, first, link the prediction coordinates to the mesh nodes through an matrix
A.prd <- projgrid$proj$A[xy.in, ]
Since we are using distance to the sea as a covariate, we also have to calculate this covariate for the prediction locations.
We now make a stack for the prediction locations. We have no data at
the prediction locations, so we set y= NA
. We then join
this stack with the estimation stack.
ef.prd <- list(
c(mesh.index),
list(
long = inla.group(coord.prd[
,
1
]), lat = inla.group(coord.prd[, 2]),
seaDist = inla.group(seaDist.prd),
Intercept = 1
)
)
stk.prd <- inla.stack(
data = list(y = NA),
A = list(A.prd, 1), tag = "prd",
effects = ef.prd
)
stk.all <- inla.stack(stk.dat, stk.prd)
Doing the joint estimation takes a while, and we therefore turn off
the computation of certain things that we are not interested in, such as
the marginals for the random effect. We will also use a simplified
integration strategy (actually only using the posterior mode of the
hyper-parameters) through the command
control.inla = list(int.strategy = "eb")
, i.e. empirical
Bayes.
rspde_fitprd <- inla(f.s,
family = "Gamma",
data = inla.stack.data(stk.all),
control.predictor = list(
A = inla.stack.A(stk.all),
compute = TRUE, link = 1
),
control.compute = list(
return.marginals = FALSE,
return.marginals.predictor = FALSE
),
control.inla = list(int.strategy = "eb"),
num.threads = "1:1"
)
We then extract the indices to the prediction nodes and then extract the mean and the standard deviation of the response:
id.prd <- inla.stack.index(stk.all, "prd")$data
m.prd <- rspde_fitprd$summary.fitted.values$mean[id.prd]
sd.prd <- rspde_fitprd$summary.fitted.values$sd[id.prd]
Finally, we plot the results:
# Plot the predictions
pred_df <- data.frame(x1 = coord.prd[,1],
x2 = coord.prd[,2],
mean = m.prd,
sd = sd.prd)
ggplot(pred_df, aes(x = x1, y = x2, fill = mean)) +
geom_raster() +
scale_fill_viridis()
Then, the std. deviations:
ggplot(pred_df, aes(x = x1, y = x2, fill = sd)) +
geom_raster() + scale_fill_viridis()
An example with replicates
For this example we will simulate a data with replicates. We will use
the same example considered in the Rational
approximation with the rSPDE
package vignette (the only
difference is the way the data is organized). We also refer the reader
to this vignette for a description of the function
matern.operators()
, along with its methods (for instance,
the simulate()
method).
Simulating the data
Let us consider a simple Gaussian linear model with 30 independent replicates of a latent spatial field , observed at the same locations, , for each replicate. For each we have
where are iid normally distributed with mean 0 and standard deviation 0.1.
We use the basis function representation of
to define the
matrix linking the point locations to the mesh. We also need to account
for the fact that we have 30 replicates at the same locations. To this
end, the
matrix we need can be generated by spde.make.A()
function.
The reason being that we are sampling
directly and not the latent vector described in the introduction of the
Rational approximation with the
rSPDE
package vignette.
We begin by creating the mesh:
m <- 200
loc_2d_mesh <- matrix(runif(m * 2), m, 2)
mesh_2d <- fm_mesh_2d(
loc = loc_2d_mesh,
cutoff = 0.05,
offset = c(0.1, 0.4),
max.edge = c(0.05, 0.5)
)
plot(mesh_2d, main = "")
points(loc_2d_mesh[, 1], loc_2d_mesh[, 2])
We then compute the
matrix, which is needed for simulation, and connects the observation
locations to the mesh. To this end we will use the
spde.make.A()
helper function, which is a wrapper that uses
the functions fm_basis()
, fm_block()
and
fm_row_kron()
from the fmesher
package.
n.rep <- 30
A <- spde.make.A(
mesh = mesh_2d,
loc = loc_2d_mesh,
index = rep(1:m, times = n.rep),
repl = rep(1:n.rep, each = m)
)
Notice that for the simulated data, we should use the
matrix from spde.make.A()
function instead of the
rspde.make.A()
function.
We will now simulate a latent process with standard deviation
and range
.
We will use
so that the model has an exponential covariance function. To this end we
create a model object with the matern.operators()
function:
nu <- 0.5
sigma <- 1
range <- 0.1
kappa <- sqrt(8 * nu) / range
tau <- sqrt(gamma(nu) / (sigma^2 * kappa^(2 * nu) * (4 * pi) * gamma(nu + 1)))
d <- 2
operator_information <- matern.operators(
mesh = mesh_2d,
nu = nu,
range = range,
sigma = sigma,
m = 2,
parameterization = "matern"
)
More details on this function can be found at the Rational approximation with the rSPDE package vignette.
To simulate the latent process all we need to do is to use the
simulate()
method on the operator_information
object. We then obtain the simulated data
by connecting with the
matrix and adding the gaussian noise.
set.seed(1)
u <- simulate(operator_information, nsim = n.rep)
y <- as.vector(A %*% as.vector(u)) +
rnorm(m * n.rep) * 0.1
The first replicate of the simulated random field as well as the observation locations are shown in the following figure.
proj <- fm_evaluator(mesh_2d, dims = c(100, 100))
df_field <- data.frame(x = proj$lattice$loc[,1],
y = proj$lattice$loc[,2],
field = as.vector(fm_evaluate(proj,
field = as.vector(u[, 1]))),
type = "field")
df_loc <- data.frame(x = loc_2d_mesh[, 1],
y = loc_2d_mesh[, 2],
field = y[1:m],
type = "locations")
df_plot <- rbind(df_field, df_loc)
ggplot(df_plot) + aes(x = x, y = y, fill = field) +
facet_wrap(~type) + xlim(0,1) + ylim(0,1) +
geom_raster(data = df_field) +
geom_point(data = df_loc, aes(colour = field),
show.legend = FALSE) +
scale_fill_viridis() + scale_colour_viridis()
## Warning: Removed 7648 rows containing missing values or values outside the scale range
## (`geom_raster()`).
Fitting the R-INLA rSPDE model
Let us then use the rational SPDE approach to fit the data.
We begin by creating the
matrix and index with replicates, and the inla.stack
object. It is important to notice that since we have replicates we
should provide the index
and repl
arguments
for rspde.make.A()
function, and also the argument
n.repl
in rspde.make.index()
function. They
behave identically as in their R-INLA
’s counterparts,
namely, inla.spde.make.A()
and
inla.make.index()
.
Abar.rep <- rspde.make.A(
mesh = mesh_2d, loc = loc_2d_mesh, index = rep(1:m, times = n.rep),
repl = rep(1:n.rep, each = m)
)
mesh.index.rep <- rspde.make.index(
name = "field", mesh = mesh_2d,
n.repl = n.rep
)
st.dat.rep <- inla.stack(
data = list(y = y),
A = Abar.rep,
effects = mesh.index.rep
)
We now create the model object.
rspde_model.rep <- rspde.matern(mesh = mesh_2d, parameterization = "spde")
Finally, we create the formula and fit. It is extremely important not
to forget the replicate
argument when building the formula
as inla()
function will not produce warning and might fit
some meaningless model.
f.rep <-
y ~ -1 + f(field,
model = rspde_model.rep,
replicate = field.repl
)
rspde_fit.rep <-
inla(f.rep,
data = inla.stack.data(st.dat.rep),
family = "gaussian",
control.predictor =
list(A = inla.stack.A(st.dat.rep)),
num.threads = "1:1"
)
We can get the summary:
summary(rspde_fit.rep)
## Time used:
## Pre = 0.234, Running = 61, Post = 1.86, Total = 63.1
## Random effects:
## Name Model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant 0.5quant
## Precision for the Gaussian observations 89.08 4.360 80.640 89.025
## Theta1 for field -3.00 0.042 -3.083 -2.997
## Theta2 for field 3.06 0.033 2.989 3.055
## Theta3 for field -0.71 0.028 -0.764 -0.711
## 0.975quant mode
## Precision for the Gaussian observations 97.801 89.044
## Theta1 for field -2.917 -2.994
## Theta2 for field 3.120 3.056
## Theta3 for field -0.654 -0.713
##
## Marginal log-Likelihood: -4479.86
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
and the summary in the user’s scale:
result_fit_rep <- rspde.result(rspde_fit.rep, "field", rspde_model.rep)
summary(result_fit_rep)
## mean sd 0.025quant 0.5quant 0.975quant mode
## tau 0.0499393 0.0020987 0.0458131 0.0499443 0.054062 0.0500038
## kappa 21.2290000 0.7022700 19.8742000 21.2214000 22.631500 21.2108000
## nu 0.6590290 0.0123395 0.6356450 0.6586990 0.684079 0.6575880
result_df <- data.frame(
parameter = c("tau", "kappa", "nu"),
true = c(tau, kappa, nu),
mean = c(
result_fit_rep$summary.tau$mean,
result_fit_rep$summary.kappa$mean,
result_fit_rep$summary.nu$mean
),
mode = c(
result_fit_rep$summary.tau$mode,
result_fit_rep$summary.kappa$mode,
result_fit_rep$summary.nu$mode
)
)
print(result_df)
## parameter true mean mode
## 1 tau 0.08920621 0.04993926 0.0500038
## 2 kappa 20.00000000 21.22904206 21.2108304
## 3 nu 0.50000000 0.65902886 0.6575883
An example with a non-stationary model
It is also possible to consider models in which (std. deviation) and (range parameter) are non-stationary. One can also use the parameterization in terms of the SPDE parameters and .
An example of such a model is given in the vignette inlabru implementation of the rational SPDE approach.
Further options of the rSPDE
-INLA
implementation
We will now discuss some of the arguments that were introduced in our
R-INLA
implementation
of the rational approximation that are not present in R-INLA
’s standard SPDE
implementation.
In each case we will provide an illustrative example.
Changing the upper bound for the smoothness parameter
When we fit a rspde.matern()
model we need to provide an
upper bound for the smoothness parameter
.
The reason for that is that the sparsity of the precision matrix should
be kept fixed during R-INLA
’s estimation and
the higher the value of
the denser the precision matrix gets.
This means that the higher the value of , the higher the computational cost to fit the model. Therefore, ideally, want to choose an upper bound for as small as possible.
To change the value of the upper bound for the smoothness parameter,
we must change the argument nu.upper.bound
. The default
value for nu.upper.bound
is 2. Other common choices for
nu.upper.bound
are 1, 3 and 4.
It is clear from the discussion above that the smaller the value of
nu.upper.bound
the faster the estimation procedure will
be.
However, if we choose a value of nu.upper.bound
which is
too low, the “correct” value of
might not belong to the interval
,
where
is the value of nu.upper.bound
. Hence, one might be forced
to increase nu.upper.bound
and estimate again, which,
obviously will increase the computational cost as we will need to do
more than one estimation.
Let us illustrate by considering the same model we considered above
for the precipitation in Paraná region in Brazil and consider
nu.upper.bound
equal to 4, which is generally a good choice
for nu.upper.bound
.
We simply use the function rspde.matern()
with the
argument nu.upper.bound
set to 4:
rspde_model_2 <- rspde.matern(mesh = prmesh, nu.upper.bound = 4)
Since we are considering the default rspde.order
, the
matrix and the mesh index objects are the same as the previous ones. Let
us then update the formula and fit the model:
f.s.2 <- y ~ -1 + Intercept + f(seaDist, model = "rw1") +
f(field, model = rspde_model_2)
rspde_fit_2 <- inla(f.s.2,
family = "Gamma", data = inla.stack.data(stk.dat),
verbose = FALSE,
control.inla = list(int.strategy = "eb"),
control.predictor = list(A = inla.stack.A(stk.dat), compute = TRUE),
num.threads = "1:1"
)
Let us see the summary of the fit:
summary(rspde_fit_2)
## Time used:
## Pre = 0.215, Running = 12.6, Post = 0.0865, Total = 12.9
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 1.941 0.04 1.863 1.941 2.018 1.941 0
##
## Random effects:
## Name Model
## seaDist RW1 model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant
## Precision-parameter for the Gamma observations 14.726 1.046 12.761
## Precision for seaDist 7779.895 4489.078 2346.458
## Theta1 for field -0.548 1.680 -3.666
## Theta2 for field 1.420 0.463 0.471
## Theta3 for field -1.745 1.194 -4.218
## 0.5quant 0.975quant mode
## Precision-parameter for the Gamma observations 14.694 1.69e+01 14.640
## Precision for seaDist 6738.194 1.94e+04 5055.794
## Theta1 for field -0.607 2.94e+00 -0.881
## Theta2 for field 1.433 2.29e+00 1.491
## Theta3 for field -1.704 4.73e-01 -1.513
##
## Marginal log-Likelihood: -1254.24
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
Let us compare with the cost from the previous fit, with the default
value of nu.upper.bound
of 2:
# nu.upper.bound = 2
rspde_fit$cpu.used
## Pre Running Post Total
## 0.37594700 7.00165892 0.06679869 7.44440460
# nu.upper.bound = 4
rspde_fit_2$cpu.used
## Pre Running Post Total
## 0.2153590 12.5557182 0.0865221 12.8575993
We can see that the fit for nu.upper.bound
equal to 2
was considerably faster.
Finally, let us get the result results for the field and see the estimate of :
result_fit_2 <- rspde.result(rspde_fit_2, "field", rspde_model_2)
summary(result_fit_2)
## mean sd 0.025quant 0.5quant 0.975quant mode
## tau 2.57220 8.701450 0.0262197 0.534885 18.23730 0.0488992
## kappa 4.58676 2.126620 1.6166000 4.206280 9.81102 3.4641200
## nu 0.80041 0.645337 0.0595328 0.622744 2.44757 0.1623380
Changing the order of the rational approximation
To change the order of the rational approximation all we have to do
is set the argument rspde.order
to the desired value. The
current available possibilities are 1,2,3
,…, up to
8
.
The higher the order of the rational approximation, the more accurate the results will be, however, the higher the computational cost will be.
The default rspde.order
of 1 is generally a good choice,
fast, and reasonably accurate. See the vignette Rational approximation with the rSPDE package
for further details on the order of the rational approximation and some
comparison with the Matérn covariance.
Let us fit the above model with the covariance-based rational
approximation of order 3
. Since we are changing the order
of the rational approximation, that is, we are changing the
rspde.order
argument, we need to recompute the
matrix and the mesh index. Therefore, we proceed as follows:
- We build a new model:
rspde_model_order_3 <- rspde.matern(mesh = prmesh,
rspde.order = 3
)
- We create a new matrix:
Abar_3 <- rspde.make.A(mesh = prmesh, loc = coords, rspde.order = 3)
- We create a new index:
mesh.index.3 <- rspde.make.index(
name = "field", mesh = prmesh,
rspde.order = 3
)
Now the remaining steps are the same as before:
stk.dat.3 <- inla.stack(
data = list(y = Y), A = list(Abar_3, 1), tag = "est",
effects = list(
c(
mesh.index.3
),
list(
long = inla.group(coords[, 1]),
lat = inla.group(coords[, 2]),
seaDist = inla.group(seaDist),
Intercept = 1
)
)
)
f.s.3 <- y ~ -1 + Intercept + f(seaDist, model = "rw1") +
f(field, model = rspde_model_order_3)
rspde_fit_order_3 <- inla(f.s.3,
family = "Gamma", data = inla.stack.data(stk.dat.3),
verbose = FALSE,
control.inla = list(int.strategy = "eb"),
control.predictor = list(A = inla.stack.A(stk.dat.3), compute = TRUE),
num.threads = "1:1"
)
Let us see the summary:
summary(rspde_fit_order_3)
## Time used:
## Pre = 0.218, Running = 16.7, Post = 0.0698, Total = 17
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 1.94 0.04 1.863 1.94 2.018 1.94 0
##
## Random effects:
## Name Model
## seaDist RW1 model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant
## Precision-parameter for the Gamma observations 14.71 1.050 12.75
## Precision for seaDist 7769.81 4336.224 2399.33
## Theta1 for field -3.53 2.356 -9.02
## Theta2 for field 1.92 0.481 1.16
## Theta3 for field 1.56 1.858 -1.16
## 0.5quant 0.975quant mode
## Precision-parameter for the Gamma observations 14.67 16.882 14.595
## Precision for seaDist 6793.11 18883.301 5174.161
## Theta1 for field -3.21 -0.099 -1.568
## Theta2 for field 1.87 3.011 1.612
## Theta3 for field 1.30 5.878 0.022
##
## Marginal log-Likelihood: -1253.99
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
We can see in the above summary that the computational cost
significantly increased. Let us compare the cost of having
rspde.order=3
with the cost of having
rspde.order=1
:
# order = 1
rspde_fit$cpu.used
## Pre Running Post Total
## 0.37594700 7.00165892 0.06679869 7.44440460
# order = 3
rspde_fit_order_3$cpu.used
## Pre Running Post Total
## 0.21784735 16.74022079 0.06983852 17.02790666
One can check the order of the rational approximation by using the
rational.order()
function. It also allows another way to
change the order of the rational order, by using the corresponding
rational.order<-()
function.
The rational.order()
and
rational.order<-()
functions can be applied to the
inla.rspde
object, to the A
matrix and to the
index
objects.
Here to check the models:
rational.order(rspde_model)
## [1] 1
rational.order(rspde_model_order_3)
## [1] 3
Here to check the A
matrices:
rational.order(Abar)
## [1] 1
rational.order(Abar_3)
## [1] 3
Here to check the indexes:
rational.order(mesh.index)
## [1] 1
rational.order(mesh.index.3)
## [1] 3
Let us now change the order of the rspde_model
object to
be 2:
rational.order(rspde_model) <- 2
rational.order(Abar) <- 2
rational.order(mesh.index) <- 2
Let us fit this new model:
f.s.2 <- y ~ -1 + Intercept + f(seaDist, model = "rw1") +
f(field, model = rspde_model)
stk.dat.2 <- inla.stack(
data = list(y = Y), A = list(Abar, 1), tag = "est",
effects = list(
c(
mesh.index
),
list(
long = inla.group(coords[, 1]),
lat = inla.group(coords[, 2]),
seaDist = inla.group(seaDist),
Intercept = 1
)
)
)
rspde_fit_order_2 <- inla(f.s.2,
family = "Gamma", data = inla.stack.data(stk.dat.2),
verbose = FALSE,
control.inla = list(int.strategy = "eb"),
control.predictor = list(A = inla.stack.A(stk.dat.2), compute = TRUE),
num.threads = "1:1"
)
Here is the summary:
summary(rspde_fit_order_2)
## Time used:
## Pre = 0.216, Running = 12.8, Post = 0.059, Total = 13.1
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 1.941 0.04 1.862 1.941 2.02 1.941 0
##
## Random effects:
## Name Model
## seaDist RW1 model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant
## Precision-parameter for the Gamma observations 14.682 1.055 12.74
## Precision for seaDist 7685.063 4376.383 2353.68
## Theta1 for field -2.562 1.477 -5.92
## Theta2 for field 1.761 0.367 1.14
## Theta3 for field 0.814 1.161 -1.02
## 0.5quant 0.975quant mode
## Precision-parameter for the Gamma observations 14.634 16.898 14.52
## Precision for seaDist 6677.727 18959.439 5043.12
## Theta1 for field -2.391 -0.254 -1.57
## Theta2 for field 1.734 2.566 1.59
## Theta3 for field 0.684 3.448 0.06
##
## Marginal log-Likelihood: -1254.35
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
Estimating models with fixed smoothness
We can fix the smoothness, say
,
of the model by providing a non-NULL positive value for
nu
.
When the smoothness, , is fixed, we can have two possibilities:
is integer;
is not integer.
The first case, i.e., when is integer, has less computational cost. Furthermore, the matrix is different than the matrix for the non-integer .
The
matrix is the same for all values of
such that
is integer. So, the
matrix for these cases only need to be computed once. The same holds for
the index
obtained from the rspde.make.index()
function.
In the second case the
matrix only depends on the order of the rational approximation and not
on
.
Therefore, if the matrix
has already been computed for some rspde.order
, then the
matrix will be same for all the values of
such that
is non-integer for that rspde.order
. The same holds for the
index
obtained from the rspde.make.index()
function.
If
is fixed, we have that the parameters returned by R-INLA
are $$\kappa = \exp(\theta_1)\quad\hbox{and}\quad\tau =
\exp(\theta_2).$$ We will now provide illustrations for both
scenarios. It is also noteworthy that just as for the case in which we
estimate
,
we can also change the order of the rational approximation by changing
the value of rspde.order
. For both illustrations with fixed
below, we will only consider the order of the rational approximation of
1, that is, the default order.
Estimating models with fixed smoothness and non-integer
Recall that:
Thus, to illustrate, let us consider a fixed
given by the mean of
obtained from the first model we considered in this vignette, namely,
the fit given by rspde_fit
, which is approximately
.
Notice that for this , the value of is non-integer, so we can use the matrix and the index of the first fitted model, which is also of order 2.
Therefore, all we have to do is build a new model in which we set
nu
to 1.21
:
rspde_model_fix <- rspde.matern(mesh = prmesh, nu = 1.21)
Let us now fit the model:
f.s.fix <- y ~ -1 + Intercept + f(seaDist, model = "rw1") +
f(field, model = rspde_model_fix)
rspde_fix <- inla(f.s.fix,
family = "Gamma", data = inla.stack.data(stk.dat),
verbose = FALSE,
control.inla = list(int.strategy = "eb"),
control.predictor = list(A = inla.stack.A(stk.dat), compute = TRUE),
num.threads = "1:1"
)
Here we have the summary:
summary(rspde_fix)
## Time used:
## Pre = 0.265, Running = 3.46, Post = 0.0423, Total = 3.76
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 1.94 0.038 1.865 1.94 2.016 1.94 0
##
## Random effects:
## Name Model
## seaDist RW1 model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant
## Precision-parameter for the Gamma observations 14.71 1.049 12.75
## Precision for seaDist 7603.34 4165.280 2409.77
## Theta1 for field -2.06 0.347 -2.75
## Theta2 for field 1.72 0.251 1.22
## 0.5quant 0.975quant mode
## Precision-parameter for the Gamma observations 14.67 16.88 14.59
## Precision for seaDist 6673.83 18262.85 5130.62
## Theta1 for field -2.06 -1.38 -2.06
## Theta2 for field 1.72 2.21 1.72
##
## Marginal log-Likelihood: -1255.08
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
Now, the summary in the original scale:
result_fix <- rspde.result(rspde_fix, "field", rspde_model_fix)
summary(result_fix)
## mean sd 0.025quant 0.5quant 0.975quant mode
## tau 0.134878 0.0477418 0.0646594 0.127087 0.250201 0.112563
## kappa 5.733000 1.4484300 3.4034600 5.558390 9.062070 5.228840
Estimating models with fixed smoothness and integer
Since we are in dimension , and , the smallest value of that makes an integer is . This value is also close to the estimated mean of the first model we fitted and enclosed by the posterior marginal density of for the first fit. Therefore, let us fit the model with .
To this end we need to compute a new matrix:
Abar.int <- rspde.make.A(
mesh = prmesh, loc = coords,
nu = 1
)
a new index:
mesh.index.int <- rspde.make.index(
name = "field", mesh = prmesh,
nu = 1
)
create a new model (remember to set nu=1
):
rspde_model_fix_int1 <- rspde.matern(mesh = prmesh,
nu = 1)
The remaining is standard:
stk.dat.int <- inla.stack(
data = list(y = Y), A = list(Abar.int, 1), tag = "est",
effects = list(
c(
mesh.index.int
),
list(
long = inla.group(coords[, 1]),
lat = inla.group(coords[, 2]),
seaDist = inla.group(seaDist),
Intercept = 1
)
)
)
f.s.fix.int.1 <- y ~ -1 + Intercept + f(seaDist, model = "rw1") +
f(field, model = rspde_model_fix_int1)
rspde_fix_int_1 <- inla(f.s.fix.int.1,
family = "Gamma",
data = inla.stack.data(stk.dat.int), verbose = FALSE,
control.inla = list(int.strategy = "eb"),
control.predictor = list(
A = inla.stack.A(stk.dat.int),
compute = TRUE
),
num.threads = "1:1"
)
Let us check the summary:
summary(rspde_fix_int_1)
## Time used:
## Pre = 0.214, Running = 1.11, Post = 0.0304, Total = 1.35
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 1.941 0.04 1.861 1.941 2.02 1.941 0
##
## Random effects:
## Name Model
## seaDist RW1 model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant
## Precision-parameter for the Gamma observations 14.68 1.051 12.71
## Precision for seaDist 7748.67 4408.583 2389.15
## Theta1 for field -1.52 0.328 -2.17
## Theta2 for field 1.60 0.285 1.05
## 0.5quant 0.975quant mode
## Precision-parameter for the Gamma observations 14.64 16.843 14.58
## Precision for seaDist 6731.21 19116.519 5088.28
## Theta1 for field -1.51 -0.883 -1.50
## Theta2 for field 1.59 2.168 1.58
##
## Marginal log-Likelihood: -1254.80
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
and check the summary in the user’s scale:
rspde_result_int <- rspde.result(rspde_fix_int_1, "field", rspde_model_fix_int1)
summary(rspde_result_int)
## mean sd 0.025quant 0.5quant 0.975quant mode
## tau 0.231081 0.0763762 0.114451 0.220147 0.411649 0.198927
## kappa 5.147770 1.4952500 2.860260 4.927210 8.690960 4.498980
Changing the priors
We begin by recalling that the fitted rSPDE
model in R-INLA
contains the
parameters
,
and
.
Let, again,
,
and
.
In terms of the SPDE
where
.
We also have the range parameter and the standard deviation .
Changing the priors of and
We begin by dealing with and .
We have that
The rspde.matern()
function assumes a lognormal prior
distribution for
and
.
This prior distribution is obtained by assuming that
and
follow normal distributions. By default we assume
and
to be independent and to follow normal distributions
and
.
is suitably defined in terms of the mesh and is defined in terms of and on the prior of the smoothness parameter.
If one wants to define the prior
one can simply set the argument
prior.tau = list(meanlog=mean_theta_1, sdlog=sd_theta_1)
.
Analogously, to define the prior
one can set the argument
prior.kappa = list(meanlog=mean_theta_2, sdlog=sd_theta_2)
.
It is important to mention that, by default, the initial values of and are and , respectively. So, if the user does not change these parameters, and also does not change the initial values, the initial values of and will be, respectively, and .
If one sets prior.tau = list(meanlog=mean_theta_1)
, the
prior for
will be
whereas, if one sets, prior.tau = list(sdlog=sd_theta_1)
,
the prior will be
Analogously, if one sets
prior.kappa = list(meanlog=mean_theta_2)
, the prior for
will be
whereas, if one sets, prior.kappa = list(sdlog=sd_theta_2)
,
the prior will be
Changing the priors of (range) and (std. dev.)
Let us now consider the priors for the range,
,
and std. deviation,
.
This parameterization is used with the argument
parameterization = "matern"
, which is the default.
In this case, we have that
We have two options for prior. By default, which is the option
prior.theta.param = "theta"
, the
rspde.matern()
function assumes a lognormal prior
distribution for
and
.
This prior distribution is obtained by assuming that
and
follow normal distributions. By default we assume
and
to be independent and to follow normal distributions
and
.
is suitably defined in terms of the mesh and is defined in terms of and on the prior of the smoothness parameter.
Similarly to the priors of
and
,
if one wants to define the prior
one can simply set the argument
prior.tau = list(meanlog=mean_theta_1, sdlog=sd_theta_1)
.
Analogously, to define the prior
one can set the argument
prior.kappa = list(meanlog=mean_theta_2, sdlog=sd_theta_2)
.
Another option is to set prior.theta.param = "spde"
. In
this case, a change of variables is performed. So, we assume a lognormal
prior on
and
.
Then, by the relations
and
,
we obtain a prior for
and
.
Changing the prior of
Finally, let us consider the smoothness parameter .
By default, we assume that
follows a beta distribution on the interval
,
where
is the upper bound for
,
with mean
and variance
,
and we call
the precision parameter, whose default value is
The parameter
is an increment to ensure that the prior beta density has boundary
values equal to zero (where the boundary values are defined either by
continuity or by limits). The default value of
is 1. The value of
can be changed by changing the argument nu.prec.inc
in the
rspde.matern()
function. The higher the value of
(that is, the value of nu.prec.inc
) the more informative
the prior distribution becomes.
Let us denote a beta distribution with support on , mean and precision parameter by .
If we want
to have a prior
one simply needs to set
prior.nu = list(mean=nu_1, prec=prec_1)
. If one sets
prior.nu = list(mean=nu_1)
, then
will have prior
where
Of one sets prior.nu = list(prec=prec_1)
, then
will have prior
It is also noteworthy that we have that, in terms of R-INLA
’s parameters,
It is important to mention that, by default, if a beta prior distribution is chosen for the smoothness parameter , then the initial value of is the mean of the prior beta distribution. So, if the user does not change this parameter, and also does not change the initial value, the initial value of will be .
We also assume that, in terms of R-INLA
’s parameters,
We can have another possibility of prior distribution for , namely, truncated lognormal distribution. The truncated lognormal distribution is defined in the following sense. We assume that has prior distribution given by a truncated normal distribution with support , where is the upper bound for , with location parameter and scale parameter . More precisely, let stand for the cumulative distribution function (CDF) of a normal distribution with mean and standard deviation . Then, has cumulative distribution function given by and if . We will call and the log-location and log-scale parameters of , respectively, and we say that follows a truncated normal distribution with location parameter and scale parameter .
To change the prior distribution of
to the truncated lognormal distribution, we need to set the argument
prior.nu.dist="lognormal"
.
To change these parameters in the prior distribution to, say,
log_nu_1
and log_sigma_1
, one can simply set
prior.nu = list(loglocation=log_nu_1, logscale=sigma_1)
.
If one sets prior.nu = list(loglocation=log_nu_1)
, the
prior for
will be a truncated normal normal distribution with location parameter
log_nu_1
and scale parameter 1
. Analogously,
if one sets, prior.nu = list(logscale=sigma_1)
, the prior
for
will be a truncated normal distribution with location parameter
and scale parameter sigma_1
.
It is important to mention that, by default, if a truncated lognormal prior distribution is chosen for the smoothness parameter , then the initial value of is the exponential of the log-location parameter of . So, if the user does not change this parameter, and also does not change the initial value, the initial value of will be .
Let us consider an example with the same dataset used in the first model of this vignette where we change the prior distribution of from beta to lognormal.
rspde_model_beta <- rspde.matern(mesh = prmesh, prior.nu.dist = "lognormal")
Since we did not change rspde.order
and are not fixing
,
we can use the same
matrix and same index from the first example.
Therefore, all we have to do is update the formula and fit the model:
f.s.beta <- y ~ -1 + Intercept + f(seaDist, model = "rw1") +
f(field, model = rspde_model_beta)
rspde_fit_beta <- inla(f.s.beta,
family = "Gamma", data = inla.stack.data(stk.dat),
verbose = FALSE,
control.inla = list(int.strategy = "eb"),
control.predictor = list(A = inla.stack.A(stk.dat), compute = TRUE),
num.threads = "1:1"
)
We have the summary:
summary(rspde_fit_beta)
## Time used:
## Pre = 0.215, Running = 5.55, Post = 0.0438, Total = 5.81
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 1.941 0.04 1.862 1.941 2.02 1.941 0
##
## Random effects:
## Name Model
## seaDist RW1 model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant
## Precision-parameter for the Gamma observations 14.680 1.050 12.714
## Precision for seaDist 7711.063 4276.540 2403.523
## Theta1 for field -1.942 1.291 -4.802
## Theta2 for field 1.654 0.367 0.993
## Theta3 for field 0.341 1.064 -1.433
## 0.5quant 0.975quant mode
## Precision-parameter for the Gamma observations 14.645 16.85 14.581
## Precision for seaDist 6750.588 18666.57 5158.325
## Theta1 for field -1.830 0.20 -1.273
## Theta2 for field 1.636 2.43 1.545
## Theta3 for field 0.251 2.69 -0.196
##
## Marginal log-Likelihood: -1254.56
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
Also, we can have the summary in the user’s scale:
result_fit_beta <- rspde.result(rspde_fit_beta, "field", rspde_model_beta)
summary(result_fit_beta)
## mean sd 0.025quant 0.5quant 0.975quant mode
## tau 0.280459 0.340436 0.00848665 0.166212 1.21197 0.0157715
## kappa 5.598370 2.229400 2.71341000 5.097390 11.30170 4.2510100
## nu 1.124140 0.420946 0.38731100 1.110590 1.86995 0.8475120
and the plot of the posterior marginal densities
Changing the starting values
The starting values to be used by R-INLA
’s optimization
algorithm can be changed by setting the arguments
start.ltau
, start.lkappa
and
start.nu
.
start.ltau
will be the initial value for , that is, the logarithm of .start.lkappa
will be the inital value for , that is, the logarithm of .start.nu
will be the initial value for . Notice that here the initial value is not on the log scale.
One can change the initial value of one or more parameters.
For instance, let us consider the example with precipitation data,
rspde.order=3
, but change the initial values to the ones
close to the fitted value when considering the default
rspde.order
(which is 1):
rspde_model_order_3_start <- rspde.matern(mesh = prmesh, rspde.order = 3,
nu.upper.bound = 2,
start.lkappa = result_fit$summary.log.kappa$mean,
start.ltau = result_fit$summary.log.tau$mean,
start.nu = min(result_fit$summary.nu$mean, 2 - 1e-5)
)
Since we already computed the
matrix and the index for rspde.order=3
, all we have to do
is to update the formula and fit:
f.s.3.start <- y ~ -1 + Intercept + f(seaDist, model = "rw1") +
f(field, model = rspde_model_order_3_start)
rspde_fit_order_3_start <- inla(f.s.3.start,
family = "Gamma",
data = inla.stack.data(stk.dat.3),
verbose = FALSE,
control.inla = list(int.strategy = "eb"),
control.predictor = list(
A = inla.stack.A(stk.dat.3),
compute = TRUE
),
num.threads = "1:1"
)
We have the summary:
summary(rspde_fit_order_3_start)
## Time used:
## Pre = 0.215, Running = 15.3, Post = 0.079, Total = 15.5
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 1.941 0.038 1.866 1.941 2.015 1.941 0
##
## Random effects:
## Name Model
## seaDist RW1 model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant
## Precision-parameter for the Gamma observations 14.715 1.050 12.742
## Precision for seaDist 7079.704 3899.500 2218.604
## Theta1 for field -0.312 2.340 -3.675
## Theta2 for field 1.598 0.324 0.873
## Theta3 for field -1.119 2.042 -5.884
## 0.5quant 0.975quant mode
## Precision-parameter for the Gamma observations 14.683 16.87 14.629
## Precision for seaDist 6208.807 17063.74 4759.423
## Theta1 for field -0.642 5.15 -2.317
## Theta2 for field 1.625 2.13 1.777
## Theta3 for field -0.834 1.83 0.615
##
## Marginal log-Likelihood: -1254.29
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
Changing the type of the rational approximation
We have three rational approximations available. The BRASIL algorithm Hofreither (2021), and two “versions” of the Clenshaw-Lord Chebyshev-Pade algorithm, one with lower bound zero and another with the lower bound given in Bolin, Simas, and Xiong (2023).
The type of rational approximation can be chosen by setting the
type.rational.approx
argument in the
rspde.matern
function. The BRASIL algorithm corresponds to
the choice brasil
, the Clenshaw-Lord Chebyshev pade with
zero lower bound and non-zero lower bounds are given, respectively, by
the choices chebfun
and chebfunLB
.
Let us fit a model assigning a brasil
rational
approximation. We will consider a model with the order of the rational
approximation being 1:
rspde_model_brasil <- rspde.matern(prmesh,
type.rational.approx = "brasil")
f.s.brasil <- y ~ -1 + Intercept + f(seaDist, model = "rw1") +
f(field, model = rspde_model_brasil)
rspde_fit_order_1_brasil <- inla(f.s.brasil,
family = "Gamma", data = inla.stack.data(stk.dat),
verbose = FALSE,
control.inla = list(int.strategy = "eb"),
control.predictor = list(A = inla.stack.A(stk.dat), compute = TRUE),
num.threads = "1:1"
)
Let us get the summary:
summary(rspde_fit_order_1_brasil)
## Time used:
## Pre = 0.212, Running = 7.78, Post = 0.0397, Total = 8.03
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 1.941 0.04 1.862 1.941 2.02 1.941 0
##
## Random effects:
## Name Model
## seaDist RW1 model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant
## Precision-parameter for the Gamma observations 14.68 1.051 12.719
## Precision for seaDist 7804.19 4563.336 2362.264
## Theta1 for field -2.71 3.541 -10.358
## Theta2 for field 1.83 0.786 0.443
## Theta3 for field 1.00 2.957 -4.156
## 0.5quant 0.975quant mode
## Precision-parameter for the Gamma observations 14.641 16.86 14.566
## Precision for seaDist 6726.141 19634.70 5022.981
## Theta1 for field -2.476 3.47 -1.341
## Theta2 for field 1.786 3.52 1.559
## Theta3 for field 0.809 7.39 -0.136
##
## Marginal log-Likelihood: -1253.27
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
Finally, similarly to the order of the rational approximation, one
can check the order with the rational.type()
function, and
assign a new type with the rational.type<-()
function.
rational.type(rspde_model)
## [1] "chebfun"
rational.type(rspde_model_brasil)
## [1] "brasil"
Let us change the type of the rational approximation on the model with rational approximation of order 3:
rational.type(rspde_model_order_3) <- "brasil"
f.s.3 <- y ~ -1 + Intercept + f(seaDist, model = "rw1") +
f(field, model = rspde_model_order_3)
rspde_fit_order_3_brasil <- inla(f.s.3,
family = "Gamma", data = inla.stack.data(stk.dat.3),
verbose = FALSE,
control.inla = list(int.strategy = "eb"),
control.predictor = list(A = inla.stack.A(stk.dat.3), compute = TRUE),
num.threads = "1:1"
)
Let us get the summary:
summary(rspde_fit_order_3_brasil)
## Time used:
## Pre = 0.217, Running = 24.1, Post = 0.0606, Total = 24.4
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 1.94 0.04 1.862 1.94 2.019 1.94 0
##
## Random effects:
## Name Model
## seaDist RW1 model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant
## Precision-parameter for the Gamma observations 14.72 1.049 12.73
## Precision for seaDist 7584.42 3959.622 2373.52
## Theta1 for field -2.97 2.027 -7.65
## Theta2 for field 1.84 0.458 1.09
## Theta3 for field 1.15 1.627 -1.31
## 0.5quant 0.975quant mode
## Precision-parameter for the Gamma observations 14.694 1.69e+01 14.670
## Precision for seaDist 6768.783 1.75e+04 5298.956
## Theta1 for field -2.710 7.60e-02 -1.389
## Theta2 for field 1.796 2.86e+00 1.576
## Theta3 for field 0.937 4.89e+00 -0.112
##
## Marginal log-Likelihood: -1254.10
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')