R Documentation |
Methods for printing objects of classes introduced by the SpatialExtremes package.
## S3 method for class 'pspline2' print(x, ...) ## S3 method for class 'maxstab' print(x, digits = max(3, getOption("digits") - 3), ...) ## S3 method for class 'copula' print(x, digits = max(3, getOption("digits") - 3), ...) ## S3 method for class 'spatgev' print(x, digits = max(3, getOption("digits") - 3), ...) ## S3 method for class 'latent' print(x, digits = max(3, getOption("digits") - 3), ..., level = 0.95)
x |
An object of class 'pspline', 'maxstab', 'copula', 'spatgev'
or 'latent'. Most often, |
digits |
The number of digits to be printed. |
... |
Other options to be passed to the |
level |
A numeric giving the significance level for the credible intervals—class 'latent' only. |
Print several information on screen.
Mathieu Ribatet
##Define the coordinates of each location n.site <- 30 coord <- matrix(5 + rnorm(2*n.site, sd = sqrt(2)), ncol = 2) colnames(coord) <- c("lon", "lat") ##Simulate a max-stable process - with unit Frechet margins data <- rmaxstab(30, coord, cov.mod = "whitmat", nugget = 0, range = 3, smooth = 0.5) ## Printing max-stable objects fit <- fitmaxstab(data, coord, "whitmat") fit ## Printing spatial GEV objects loc.form <- scale.form <- shape.form <- y ~ 1 fit <- fitspatgev(data, coord, loc.form, scale.form, shape.form) fit
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.