In this vignette we will present the inlabru implementation of
the covariance-based rational SPDE approach. For further technical
details on the covariance-based approach, see the Rational approximation with the rSPDE
package vignette and Bolin et al. (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.
The examples in this vignette are the same as those in the R-INLA implementation of the rational SPDE
approach vignette. As in that case, 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.
To illustrate our implementation of rSPDE in inlabru 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 et al. (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.
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, \[\Gamma(\mu, \phi): \pi (y) =
\frac{1}{\Gamma(\phi)} \left(\frac{\phi}{\mu}\right)^{\phi} y^{\phi - 1}
\exp\left(-\frac{\phi y}{\mu}\right) .\] In this
parameterization, the distribution has expected value \(E(x) = \mu\) and variance \(V(x) = \mu^2/\phi\), where \(1/\phi\) is a dispersion parameter.
In this example \(\mu\) will be modelled using a stochastic model that includes both covariates and spatial structure, resulting in the latent Gaussian model for the precipitation measurements \[\begin{align} y_i\mid \mu(s_i), \theta &\sim \Gamma(\mu(s_i),c\phi)\\ \log (\mu(s)) &= \eta(s) = \sum_k f_k(c_k(s))+u(s)\\ \theta &\sim \pi(\theta) \end{align},\]
where \(y_i\) denotes the
measurement taken at location \(s_i\),
\(c_k(s)\) are covariates, \(u(s)\) is a mean-zero Gaussian Matérn
field, and \(\theta\) 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.
We will be using inlabru. The
inlabru package is available on CRAN and also on GitHub.
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
In the next snippet of code, we extract the coordinates and altitudes and remove the locations with missing values.
Let us build a plot for the precipitations:
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:
par(mfrow = c(2, 2))
plot(coords[, 1], Y, cex = 0.5, xlab = "Longitude")
plot(coords[, 2], Y, cex = 0.5, xlab = "Latitude")
plot(seaDist, Y, cex = 0.5, xlab = "Distance to sea")
plot(alt, Y, cex = 0.5, xlab = "Altitude")To use the inlabru
implementation of the rSPDE model we need to load the
functions:
To create a rSPDE model, one would the
rspde.matern() function in a similar fashion as one would
use the inla.spde2.matern() function.
We can use fm_mesh_2d() function from the
fmesher package for creating the mesh. Let us create a mesh
which is based on a non-convex hull to avoid adding many small triangles
outside the domain of interest:
library(fmesher)
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")In place of a inla.stack, we can set up a
data.frame() to use inlabru. We refer the reader
to vignettes in https://inlabru-org.github.io/inlabru/index.html for
further details.
## Linking to GEOS 3.12.1, GDAL 3.8.4, PROJ 9.4.0; sf_use_s2() is TRUE
To set up an rSPDEmodel, all we need is the mesh. By
default it will assume that we want to estimate the smoothness parameter
\(\nu\) 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:
Notice that this function is very reminiscent of R-INLA’s
inla.spde2.matern() function.
We will assume the following linkage between model components and observations \[\eta(s) \sim A x(s) + A \text{ Intercept} + \text{seaDist}.\] \(\eta(s)\) will then be used in the observation-likelihood, \[y_i\mid \eta(s_i),\theta \sim \Gamma(\exp(\eta (s_i)), c\phi).\]
We will build a model using the distance to the sea \(x_i\) as a covariate through an improper
CAR(1) model with \(\beta_{ij}=1(i\sim
j)\), which R-INLA calls a random
walk of order 1. We will fit it in inlabru’s style:
To fit the model we simply use the bru() function:
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):
## inlabru version: 2.14.1
## INLA version: 26.05.21
## Latent components:
## Intercept: main = linear(1)
## distSea: main = rw1(seaDist)
## field: main = cgeneric(geometry)
## Observation models:
## Model tag: <No tag>
## Family: 'Gamma'
## Data class: 'sf', 'data.frame'
## Response class: 'numeric'
## Predictor: y ~ Intercept + distSea + field
## Additive/Linear/Rowwise: TRUE/TRUE/TRUE
## Used components: effect[Intercept, distSea, field], latent[]
## Time used:
## Pre = 0.154, Running = 5.25, Post = 0.0343, Total = 5.44
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 1.942 0.042 1.858 1.942 2.025 1.942 0
##
## Random effects:
## Name Model
## distSea RW1 model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant
## Precision-parameter for the Gamma observations 14.41 1.039 12.46
## Precision for distSea 7567.83 4274.202 2346.92
## Theta1 for field -4.52 3.612 -12.99
## Theta2 for field 2.09 0.794 0.91
## Theta3 for field 2.72 3.132 -1.72
## 0.5quant 0.975quant mode
## Precision-parameter for the Gamma observations 14.37 1.66e+01 14.307
## Precision for distSea 6587.35 1.86e+04 4996.084
## Theta1 for field -4.00 5.91e-01 -1.223
## Theta2 for field 1.99 3.93e+00 1.461
## Theta3 for field 2.27 1.01e+01 -0.104
##
## Marginal log-Likelihood: -1254.68
## 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 \(\theta_1 = \textrm{Theta1}\), \(\theta_2=\textrm{Theta2}\) and \(\theta_3=\textrm{Theta3}\). In terms of the SPDE \[(\kappa^2 I - \Delta)^{\alpha/2}(\tau u) = \mathcal{W},\] where \(\alpha = \nu + d/2\), we have that \[\tau = \exp(\theta_1),\quad \kappa = \exp(\theta_2), \] and by default \[\nu = 4\Big(\frac{\exp(\theta_3)}{1+\exp(\theta_3)}\Big).\] The number 4 comes from the upper bound for \(\nu\), which is discussed in R-INLA implementation of the rational SPDE approach vignette.
In general, we have \[\nu = \nu_{UB}\Big(\frac{\exp(\theta_3)}{1+\exp(\theta_3)}\Big),\] where \(\nu_{UB}\) is the value of the upper bound for the smoothness parameter \(\nu\).
Another choice for prior for \(\nu\) is a truncated lognormal distribution and is also discussed in R-INLA implementation of the rational SPDE approach vignette.
We can obtain outputs with respect to parameters in the original
scale by using the function rspde.result():
## 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.
## mean sd 0.025quant 0.5quant 0.975quant mode
## tau 0.238535 0.620082 2.29443e-06 0.0207716 1.84584 2.33440e-09
## kappa 11.741000 14.443600 2.49952e+00 7.1252100 49.81490 3.67789e+00
## nu 1.522810 0.548830 2.99359e-01 1.7936600 1.99990 1.99999e+00
We can also plot the posterior densities. To this end we will use the
gg_df() function, which creates ggplot2
user-friendly data frames:
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")We can also obtain the summary on a different parameterization by
setting the parameterization argument on the
rspde.result() function:
## 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.
## mean sd 0.025quant 0.5quant 0.975quant mode
## std.dev 12.078800 155.490000 -0.0181999 4.555490 44.269900 -0.215156
## range 0.420235 0.245269 0.0362647 0.402429 0.940887 0.413635
## nu 1.522810 0.548830 0.2993590 1.793660 1.999900 1.999990
In a similar manner, we can obtain posterior plots on the
matern parameterization:
posterior_df_fit_matern <- gg_df(result_fit_matern)
ggplot(posterior_df_fit_matern) + geom_line(aes(x = x, y = y)) +
facet_wrap(~parameter, scales = "free") + labs(y = "Density")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 fm_evaluator() function:
nxy <- c(150, 100)
projgrid <- fm_evaluator(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")Let us now create a data.frame() of the coordinates:
coord.prd.df <- data.frame(x1 = coord.prd[,1],
x2 = coord.prd[,2])
coord.prd.df <- st_as_sf(coord.prd.df, coords = c("x1", "x2"),
crs = 4326)Since we are using distance to the sea as a covariate, we also have
to calculate this covariate for the prediction locations. Finally, we
add the prediction location to our prediction data.frame(),
namely, coord.prd.df:
seaDist.prd <- apply(spDists(coord.prd,
PRborder[1034:1078, ],
longlat = TRUE
), 1, min)
coord.prd.df$seaDist <- seaDist.prdFinally, we plot the results. First the predicted mean:
Then, the std. deviations:
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).
Let us consider a simple Gaussian linear model with 30 independent replicates of a latent spatial field \(x(\mathbf{s})\), observed at the same \(m\) locations, \(\{\mathbf{s}_1 , \ldots , \mathbf{s}_m \}\), for each replicate. For each \(i = 1,\ldots,m,\) we have
\[\begin{align} y_i &= x_1(\mathbf{s}_i)+\varepsilon_i,\\ \vdots &= \vdots\\ y_{i+29m} &= x_{30}(\mathbf{s}_i) + \varepsilon_{i+29m}, \end{align}\]
where \(\varepsilon_1,\ldots,\varepsilon_{30m}\) are iid normally distributed with mean 0 and standard deviation 0.1.
We use the basis function representation of \(x(\cdot)\) to define the \(A\) 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 \(A\) matrix we need can be generated by
spde.make.A() function. The reason being that we are
sampling \(x(\cdot)\) 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 \(A\) 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 \(A\) matrix from spde.make.A()
function instead of the rspde.make.A().
We will now simulate a latent process with standard deviation \(\sigma=1\) and range \(0.1\). We will use \(\nu=0.5\) 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 \(y\) by connecting with the \(A\) 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.1The 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()Let us then use the rational SPDE approach to fit the data.
We begin by creating the model object.
Let us now create the data.frame() and the vector with
the replicates indexes:
rep.df <- data.frame(y = y, x1 = rep(loc_2d_mesh[,1], n.rep),
x2 = rep(loc_2d_mesh[,2], n.rep))
rep.df <- st_as_sf(rep.df, coords = c("x1", "x2"))
repl <- rep(1:n.rep, each=m)Let us create the component and fit. It is extremely important not to
forget the replicate when fitting model with the
bru() function. It will not produce warning and might fit
some meaningless model.
cmp.rep <-
y ~ -1 + field(geometry,
model = rspde_model.rep,
replicate = repl
)
rspde_fit.rep <-
bru(cmp.rep,
data = rep.df,
family = "gaussian",
options = list(num.threads = "1:1")
)We can get the summary:
## inlabru version: 2.14.1
## INLA version: 26.05.21
## Latent components:
## field: main = cgeneric(geometry), replicate = iid(repl)
## Observation models:
## Model tag: <No tag>
## Family: 'gaussian'
## Data class: 'sf', 'data.frame'
## Response class: 'numeric'
## Predictor: y ~ field
## Additive/Linear/Rowwise: TRUE/TRUE/TRUE
## Used components: effect[field], latent[]
## Time used:
## Pre = 0.16, Running = 80.9, Post = 1.99, Total = 83.1
## Random effects:
## Name Model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant 0.5quant
## Precision for the Gaussian observations 94.569 4.599 85.566 94.549
## Theta1 for field -3.251 0.074 -3.427 -3.239
## Theta2 for field 3.166 0.031 3.108 3.165
## Theta3 for field -0.631 0.029 -0.673 -0.634
## 0.975quant mode
## Precision for the Gaussian observations 103.661 94.727
## Theta1 for field -3.151 -3.175
## Theta2 for field 3.229 3.162
## Theta3 for field -0.562 -0.655
##
## Marginal log-Likelihood: -4498.15
## 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:
## mean sd 0.025quant 0.5quant 0.975quant mode
## tau 0.0388646 0.00278059 0.0325624 0.0392974 0.0428153 0.0418223
## kappa 23.7243000 0.72590800 22.3819000 23.6843000 25.2291000 23.5882000
## nu 0.6946770 0.01327200 0.6754500 0.6924650 0.7255170 0.6837350
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.03886461 0.04182231
## 2 kappa 20.00000000 23.72428605 23.58824564
## 3 nu 0.50000000 0.69467733 0.68373457
Let us also obtain the summary on the matern
parameterization:
result_fit_rep_matern <- rspde.result(rspde_fit.rep, "field", rspde_model.rep,
parameterization = "matern")
summary(result_fit_rep_matern)## mean sd 0.025quant 0.5quant 0.975quant mode
## std.dev 1.0940300 0.01332820 1.0688400 1.0936400 1.120970 1.0920200
## range 0.0992093 0.00354894 0.0923696 0.0992036 0.106155 0.0983762
## nu 0.6946770 0.01327200 0.6754500 0.6924650 0.725517 0.6837350
result_df_matern <- data.frame(
parameter = c("std_dev", "range", "nu"),
true = c(sigma, range, nu),
mean = c(
result_fit_rep_matern$summary.std.dev$mean,
result_fit_rep_matern$summary.range$mean,
result_fit_rep_matern$summary.nu$mean
),
mode = c(
result_fit_rep$summary.std.dev$mode,
result_fit_rep$summary.range$mode,
result_fit_rep$summary.nu$mode
)
)
print(result_df_matern)## parameter true mean mode
## 1 std_dev 1.0 1.09402564 0.6837346
## 2 range 0.1 0.09920932 0.6837346
## 3 nu 0.5 0.69467733 0.6837346
Our goal now is to show how one can fit model with non-stationary \(\sigma\) (std. deviation) and non-stationary \(\rho\) (a range parameter). One can also use the parameterization in terms of non-stationary SPDE parameters \(\kappa\) and \(\tau\).
For this example we will consider simulated data.
Let us consider a simple Gaussian linear model with a latent spatial field \(x(\mathbf{s})\), defined on the rectangle \((0,10) \times (0,5)\), where the std. deviation and range parameter satisfy the following log-linear regressions: \[\begin{align} \log(\sigma(\mathbf{s})) &= \theta_1 + \theta_3 b(\mathbf{s}),\\ \log(\rho(\mathbf{s})) &= \theta_2 + \theta_3 b(\mathbf{s}), \end{align}\] where \(b(\mathbf{s}) = (s_1-5)/10\). We assume the data is observed at \(m\) locations, \(\{\mathbf{s}_1 , \ldots , \mathbf{s}_m \}\). For each \(i = 1,\ldots,m,\) we have
\[y_i = x_1(\mathbf{s}_i)+\varepsilon_i,\]
where \(\varepsilon_1,\ldots,\varepsilon_{m}\) are iid normally distributed with mean 0 and standard deviation 0.1.
We begin by defining the domain and creating the mesh:
rec_domain <- cbind(c(0, 1, 1, 0, 0) * 10, c(0, 0, 1, 1, 0) * 5)
mesh <- fm_mesh_2d(loc.domain = rec_domain, cutoff = 0.1,
max.edge = c(0.5, 1.5), offset = c(0.5, 1.5))We follow the same structure as INLA. However,
INLA only allows one to specify B.tau and
B.kappa matrices, and, in INLA, if one wants
to parameterize in terms of range and standard deviation one needs to do
it manually. Here we provide the option to directly provide the matrices
B.sigma and B.range.
The usage of the matrices B.tau and B.kappa
are identical to the corresponding ones in
inla.spde2.matern() function. The matrices
B.sigma and B.range work in the same way, but
they parameterize the stardard deviation and range, respectively.
The columns of the B matrices correspond to the same
parameter. The first column does not have any parameter to be estimated,
it is a constant column.
So, for instance, if one wants to share a parameter with both
sigma and range (or with both tau
and kappa), one simply let the corresponding column to be
nonzero on both B.sigma and B.range (or on
B.tau and B.kappa).
We will assume \(\nu = 0.8\), \(\theta_1 = 0, \theta_2 = 1\) and \(\theta_3=1\). Let us now build the model to
obtain the sample with the spde.matern.operators()
function:
nu <- 0.8
true_theta <- c(0,1, 1)
B.sigma = cbind(0, 1, 0, (mesh$loc[,1] - 5) / 10)
B.range = cbind(0, 0, 1, (mesh$loc[,1] - 5) / 10)
# SPDE model
op_cov_ns <- spde.matern.operators(mesh = mesh,
theta = true_theta,
nu = nu,
B.sigma = B.sigma,
B.range = B.range, m = 2,
parameterization = "matern")Let us now sample the data with the simulate()
method:
Let us now obtain 600 random locations on the rectangle and compute the \(A\) matrix:
m <- 600
loc_mesh <- cbind(runif(m) * 10, runif(m) * 5)
A <- spde.make.A(
mesh = mesh,
loc = loc_mesh
)We can now generate the response vector y:
Let us then use the rational SPDE approach to fit the data.
We begin by creating the model object. We are creating a new one so that we do not start the estimation at the true values.
rspde_model_nonstat <- rspde.matern(mesh = mesh,
B.sigma = B.sigma,
B.range = B.range,
parameterization = "matern") Let us now create the data.frame() and the vector with
the replicates indexes:
nonstat_df <- data.frame(y = y, x1 = loc_mesh[,1],
x2 = loc_mesh[,2])
nonstat_df <- st_as_sf(nonstat_df, coords = c("x1", "x2"))Let us create the component and fit. It is extremely important not to
forget the replicate when fitting model with the
bru() function. It will not produce warning and might fit
some meaningless model.
cmp_nonstat <-
y ~ -1 + field(geometry,
model = rspde_model_nonstat
)
rspde_fit_nonstat <-
bru(cmp_nonstat,
data = nonstat_df,
family = "gaussian",
options = list(verbose = FALSE,
num.threads = "1:1")
)We can get the summary:
## inlabru version: 2.14.1
## INLA version: 26.05.21
## Latent components:
## field: main = cgeneric(geometry)
## Observation models:
## Model tag: <No tag>
## Family: 'gaussian'
## Data class: 'sf', 'data.frame'
## Response class: 'numeric'
## Predictor: y ~ field
## Additive/Linear/Rowwise: TRUE/TRUE/TRUE
## Used components: effect[field], latent[]
## Time used:
## Pre = 0.148, Running = 16.5, Post = 0.13, Total = 16.7
## Random effects:
## Name Model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant 0.5quant
## Precision for the Gaussian observations 105.980 9.943 87.794 105.504
## Theta1 for field -0.077 0.075 -0.237 -0.073
## Theta2 for field 0.788 0.098 0.570 0.797
## Theta3 for field 1.233 0.095 1.070 1.227
## Theta4 for field 0.029 0.062 -0.082 0.025
## 0.975quant mode
## Precision for the Gaussian observations 126.909 104.534
## Theta1 for field 0.055 -0.052
## Theta2 for field 0.947 0.842
## Theta3 for field 1.440 1.192
## Theta4 for field 0.162 0.009
##
## Marginal log-Likelihood: 1.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)')
We can obtain outputs with respect to parameters in the original
scale by using the function rspde.result():
result_fit_nonstat <- rspde.result(rspde_fit_nonstat, "field", rspde_model_nonstat)
summary(result_fit_nonstat)## mean sd 0.025quant 0.5quant 0.975quant mode
## Theta1.matern -0.0770919 0.0745431 -0.236797 -0.0730254 0.0549135 -0.0518744
## Theta2.matern 0.7878410 0.0975004 0.570179 0.7969200 0.9471110 0.8424360
## Theta3.matern 1.2325400 0.0948536 1.070180 1.2265700 1.4401600 1.1915600
## nu 1.0143100 0.0309894 0.959216 1.0120600 1.0800900 1.0044300
Let us compare the mean to the true values of the parameters:
summ_res_nonstat <- summary(result_fit_nonstat)
result_df <- data.frame(
parameter = result_fit_nonstat$params,
true = c(true_theta, nu),
mean = summ_res_nonstat[,1],
mode = summ_res_nonstat[,6]
)
print(result_df)## parameter true mean mode
## 1 Theta1.matern 0.0 -0.0770919 -0.0518744
## 2 Theta2.matern 1.0 0.7878410 0.8424360
## 3 Theta3.matern 1.0 1.2325400 1.1915600
## 4 nu 0.8 1.0143100 1.0044300
We can also plot the posterior densities. To this end we will use the
gg_df() function, which creates ggplot2
user-friendly data frames:
posterior_df_fit <- gg_df(result_fit_nonstat)
ggplot(posterior_df_fit) + geom_line(aes(x = x, y = y)) +
facet_wrap(~parameter, scales = "free") + labs(y = "Density")We can compare the models fitted by inlabru by using the
function cross_validation(). To illustrate, we will
consider the nonstationary model rspde_fit_nonstat fitted
in the previous example and a stationary fit of the same dataset.
Let us, then, fit a stationary model with the previous dataset. We start by defining the stationary model:
Then, inlabru’s component:
We can now fit the model:
rspde_fit_stat <-
bru(cmp_stat,
data = nonstat_df,
family = "gaussian",
options = list(verbose = FALSE,
num.threads = "1:1")
)To perform cross-validation, we create a list with the fitted models,
and we pass this list to the cross_validation() function.
It is also important to create a named list, so that the output has
meaningful names for the models. We will perform a
leave percentage out cross-validation, with the default
that fits the model on 20% of the data, to predict 80% of the data.
Let us create the models list:
We will now run the cross-validation on the models above. We set the
cv_type to lpo to perform the leave percentage
out cross-validation, there are also the k-fold (default)
and loo options to perform k-fold and leave one out
cross-validations, respectively. Observe that by default we are
performing a pseudo cross-validation, that is, we will not refit the
model for each fold, however only the training data will be used to
perform the prediction.
We can now look at the results by printing cv_result.
Observe that the best model with respect to each score is displayed in
the last row.
## Model mse mae dss
## 1 stationary 0.135798508814861 0.270461394335997 -1.16195830958828
## 2 nonstationary 0.134849680120719 0.270357567634662 -1.15003294532667
## Best nonstationary nonstationary stationary
## crps scrps
## 1 0.192727388743765 0.498517896903423
## 2 0.189118792735448 0.488997610896709
## nonstationary nonstationary
The cross_validation() function also has the following
useful options:
return_score_folds option, so that the scores for each
fold can be returned in order to create confidence regions for the
scores.return_train_test To return the train and test indexes
that were used to perform the cross-validation.true_CV To perform true cross-validation, that is, the
data will be fit again for each fold, which is more costly.train_test_indexes In which the user can provide the
indexes for the train and test sets.More details can be found in the manual page of the
cross_validation() function.
inlabru implementationThere are several additional options that are available. For
instance, it is possible to change the order of the rational
approximation, the upper bound for the smoothness parameter (which may
speed up the fit), change the priors, change the type of the rational
approximation, among others. These options are described in the “Further
options of the rSPDE-INLA implementation”
section of the R-INLA implementation of the
rational SPDE approach vignette. Observe that all these options are
passed to the model through the rspde.matern() function,
and therefore the resulting model object can directly be used in the
bru() function, in an identical manner to the examples
above.