Learn R Programming

gear (version 0.3.4)

update.geolm: Update linear model for geostatistical data

Description

update updates a geostatistical linear model based on the given model.

Usage

# S3 method for geolm
update(object, mod, ...)

# S3 method for geolm_cmodMan update(object, mod, ...)

# S3 method for geolm_cmodStd update(object, mod, ...)

Arguments

object

An object produced by the geolm function.

mod

A spatial dependence model object obtained from one of the cmod_* functions or the estimate function.

...

Not implemented.

Value

Returns an object of the same class as object.

See Also

update

Examples

Run this code
# NOT RUN {
# generate response
y = rnorm(10)
# generate coordinates
x1 = runif(10); x2 = runif(10)

# data frame for observed data
data = data.frame(y, x1, x2)
coords = cbind(x1, x2)
psill = 2 # partial sill
r = 4 # range parameter
evar = .1 # error variance
fvar = .1 # add finescale variance
# one can't generally distinguish between evar and fvar, but
# this is done for illustration purposes

cmod_std = cmod_std("exponential", psill = psill, r = r,
                    evar = evar, fvar = fvar)

cmod_std2 = cmod_std("exponential", psill = psill + 1,
                     r = r + .5, evar = evar + .01,
                     fvar = fvar)

# check geolm update for universal kriging
gear1 = geolm(y ~ x1 + x2, data = data, mod = cmod_std,
              coordnames = c("x1", "x2"))

gear2 = geolm(y ~ x1 + x2, data = data, mod = cmod_std2,
              coordnames = c("x1", "x2"))
gear2b = update(gear1, cmod_std2)
gear2$call = NULL
gear2b$call = NULL
identical(gear2, gear2b)
# }

Run the code above in your browser using DataLab