georob (version 0.3-6)

georobS3methods: Common S3 Methods for Class georob

Description

This page documents the methods coef, fixef, fixed.effects, model.frame, model.matrix, nobs, print, ranef, random.effects, resid, residuals, rstandard, summary and vcov for the class georob which extract the respective components or summarize a georob object.

Usage

# S3 method for georob
coef(object, what, ...)

# S3 method for georob fixef(object, ...)

# S3 method for georob fixed.effects(object, ...)

# S3 method for georob model.frame(formula, ...)

# S3 method for georob model.matrix(object, ...)

# S3 method for georob nobs(object, ...)

# S3 method for georob print(x, digits = max(3, getOption("digits") - 3), ...)

# S3 method for georob ranef(object, standard = FALSE, ...)

# S3 method for georob random.effects(object, standard = FALSE, ...)

# S3 method for georob resid(object, type = c("working", "response", "deviance", "pearson", "partial"), terms = NULL, level = 1, ...)

# S3 method for georob residuals(object, type = c("working", "response", "deviance", "pearson", "partial"), terms = NULL, level = 1, ...) # S3 method for georob rstandard(model, level = 1, ...)

# S3 method for georob summary(object, correlation = FALSE, signif = 0.95, ...)

# S3 method for georob vcov(object, ...)

Arguments

object, model, x

an object of class georob, see georobObject.

formula

a model formula or terms object or an object of class georob, see georobObject.

correlation

logical controlling whether the correlation matrix of the estimated regression coefficients and of the fitted variogram parameters (only for non-robust fits) is computed (default FALSE).

digits

positive integer indicating the number of decimal digits to print.

level

an optional integer giving the level for extracting the residuals from object. level = 0 extracts the regression residuals \(\widehat{B}(\mbox{\boldmath$s$\unboldmath}) + \widehat{\varepsilon}(\mbox{\boldmath$s$\unboldmath})\) and level = 1 (default) only the estimated errors \(\widehat{\varepsilon}(\mbox{\boldmath$s$\unboldmath})\).

signif

confidence level for computing confidence intervals for variogram parameters (default 0.95).

standard

logical controlling whether the spatial random effects \(\mbox{\boldmath$B$\unboldmath}\) should be standardized (default FALSE).

type

character keyword indicating the type of residuals to compute, see residuals.lm. type = "huber" computes `huberized' residuals \(\widehat{\sigma} / \gamma_1\psi(\widehat{\varepsilon}(\mbox{\boldmath$s$\unboldmath}) / \widehat{\sigma})\).

terms

If type = "terms", which terms (default is all terms).

what

If what = "trend" (default) the function coef extracts the coefficients of the trend model and for what = "variogram" the variogram parameters.

...

additional arguments passed to methods.

Details

For robust REML fits deviance returns (possibly with a warning) the deviance of the Gaussian REML fit of the equivalent Gaussian spatial linear model with heteroscedastic nugget.

The methods model.frame, model.matrix and nobs extract the model frame, model matrix and the number of observations, see help pages of respective generic functions.

The methods residuals (and resid) extract either the estimated independent errors \(\widehat{\varepsilon}(\mbox{\boldmath$s$\unboldmath})\) or the sum of the latter quantities and the spatial random effects \(\widehat{B}(\mbox{\boldmath$s$\unboldmath})\). rstandard does the same but standardizes the residuals to unit variance. ranef (random.effects) extracts the spatial random effects with the option to standardize them as well, and fixef (fixed.effects) extracts the fitted regression coefficients, which may of course also be obtained by coef.

Besides, the default methods of the generic functions confint, df.residual, fitted, formula, termplot and update can be used for objects of class georob.

See Also

georobIntro for a description of the model and a brief summary of the algorithms;

georob for (robust) fitting of spatial linear models;

georobObject for a description of the class georob;

profilelogLik for computing profiles of Gaussian likelihoods;

plot.georob for display of RE(ML) variogram estimates;

control.georob for controlling the behaviour of georob;

georobModelBuilding for stepwise building models of class georob;

cv.georob for assessing the goodness of a fit by georob;

predict.georob for computing robust Kriging predictions;

lgnpp for unbiased back-transformation of Kriging prediction of log-transformed data;

georobSimulation for simulating realizations of a Gaussian process from model fitted by georob; and finally

sample.variogram and fit.variogram.model for robust estimation and modelling of sample variograms.

Examples

Run this code
# NOT RUN {
  
data(meuse)

## Gaussian REML fit
r.logzn.reml <- georob(log(zinc) ~ sqrt(dist), data = meuse, locations = ~ x + y,
    variogram.model = "RMexp",
    param = c(variance = 0.15, nugget = 0.05, scale = 200),
    tuning.psi = 1000,
    control = control.georob(cov.bhat = TRUE, cov.ehat.p.bhat = TRUE))
summary(r.logzn.reml, correlation = TRUE)

## robust REML fit 
r.logzn.rob <- update(r.logzn.reml, tuning.psi = 1)
    
summary(r.logzn.rob, correlation = TRUE)

## residual diagnostics
old.par <- par(mfrow = c(2,3))

plot(fitted(r.logzn.reml), rstandard(r.logzn.reml))
abline(h = 0, lty = "dotted")
qqnorm(rstandard(r.logzn.reml))
abline(0, 1)
qqnorm(ranef(r.logzn.reml, standard = TRUE))
abline(0, 1)
plot(fitted(r.logzn.rob), rstandard(r.logzn.rob))
abline(h = 0, lty = "dotted")
qqnorm(rstandard(r.logzn.rob))
abline(0, 1)
qqnorm(ranef(r.logzn.rob, standard = TRUE))
abline(0, 1)

par(old.par)
# }

Run the code above in your browser using DataLab