| TIC {SpatialExtremes} | R Documentation |
Computes a "generalization" of the Takeuchi's information criterion when the model is miss-specified.
## S3 method for class 'maxstab': TIC(object, ...) ## S3 method for class 'spatgev': TIC(object, ...)
object |
An object of class maxstab or
spatgev. Often, it will be the output of the
fitmaxstab or fitspatgev function. |
... |
Additional objects of class maxstab or
spatgev for which TIC should be computed. |
TIC is like AIC so that when comparing models one wants to get the lowest TIC score.
Numeric.
Mathieu Ribatet
Varin, C. and Vidoni, P. (2005) A note on composite likelihood inference and model selection. Biometrika 92(3):519–528.
##Define the coordinate of each location
n.site <- 50
locations <- matrix(runif(2*n.site, 0, 100), ncol = 2)
colnames(locations) <- c("lon", "lat")
##Simulate a max-stable process - with unit Frechet margins
data <- rmaxstab(40, locations, cov.mod = "whitmat", sill = 0.8, range =
30, smooth = 0.5)
M0 <- fitmaxstab(data, locations, "powexp", std.err.type = "score",
fit.marge = FALSE)
M1 <- fitmaxstab(data, locations, "cauchy", std.err.type = "score",
fit.marge = FALSE)
TIC(M0, M1)