RMmodelsMultivariate {RandomFields}R Documentation

Multivariate models

Description

Here, multivariate and vector-valued covariance models are presented.

Details

Covariance models

RMbicauchy a bivariate Cauchy model
RMbiwm full bivariate Whittle-Matern model (stationary and isotropic)
RMbigneiting bivariate Gneiting model (stationary and isotropic)
RMbistable a bivariate stable model
RMcurlfree curlfree (spatial) vector-valued field (stationary and anisotropic)
RMdelay bivariate delay effect model (stationary)
RMdivfree divergence free (spatial) vector valued field, (stationary and anisotropic)
RMexponential functional returning exp(C)
RMkolmogorov Kolmogorov's model of turbulence
RMmatrix linear model of corregionalisation
RMmqam multivariate quasi-arithmetic mean (stationary)
RMparswm multivariate Whittle-Matern model (stationary and isotropic)
RMschur element-wise product with a positive definite matrix
RMtbm turning bands operator
RMvector vector-valued field (combining RMcurlfree and RMdivfree)

Trend models

RMtrend for explicite trend modelling
R.models for implicite trend modelling
R.c binding univariate trend models into a vector

Author(s)

Martin Schlather, schlather@math.uni-mannheim.de

References

See Also

RFformula, RMmodels, RM, RMmodelsAdvanced

multivariate’, a vignette for multivariate geostatistics

Examples

RFoptions(seed=0) ## *ANY* simulation will have the random seed 0; set
##                   RFoptions(seed=NA) to make them all random again

n <- 100
x <- runif(n=n, min=1, max=50)
y <- runif(n=n, min=1, max=50)

rho <- matrix(nc=2, c(1, -0.8, -0.8, 1))
model <- RMparswmX(nudiag=c(0.5, 0.5), rho=rho)

## generation of artifical data
data <- RFsimulate(model = model, x=x, y=y, grid=FALSE)

## introducing some NAs ...
data@data$variable1[1:10] <- NA
data@data$variable2[90:100] <- NA

plot(data)



## co-kriging
x <- y <- seq(0, 50, 1)
k <- RFinterpolate(model, x=x, y=y, data= data)
plot(k, data)

## conditional simulation
z <- RFsimulate(model, x=x, y=y, data= data)
plot(z, data)



[Package RandomFields version 3.1.50 Index]