Description Usage Arguments Details Value References See Also Examples
Estimation the parameters of the Brown-Resnick process, using either the pairwise M-estimator or weighted least squares (WLS).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
x |
An n x d data matrix. |
locations |
A d x 2 matrix containing the Cartesian coordinates of d points in the plane. |
indices |
A q x d matrix containing exactly 2 ones per row, representing a pair of points from the matrix |
k |
An integer between 1 and n - 1; the threshold parameter in the definition of the empirical stable tail dependence function. |
method |
Choose between |
isotropic |
A Boolean variable. If |
biascorr |
For |
Tol |
For |
k1 |
For |
tau |
For |
startingValue |
Initial value of the parameters in the minimization routine. Defaults to c(1,1.5) if |
Omega |
A q x q matrix specifying the metric with which the distance between the parametric and nonparametric estimates will be computed. The default is the identity matrix, i.e., the Euclidean metric. |
iterate |
A Boolean variable. If |
covMat |
A Boolean variable. If |
The parameters of the Brown-Resnick process are either (α,ρ) for an isotropic process or (α,ρ,β,c) for an anisotropic process. The matrix indices
can be either user-defined or returned from the function selectGrid
with cst = c(0,1)
. Estimation might be rather slow when iterate = TRUE
or even when covMat = TRUE
.
A list with the following components:
theta | The estimator using the optimal weight matrix. |
theta_pilot | The estimator without the optimal weight matrix. |
covMatrix | The estimated covariance matrix for the estimator. |
value | The value of the minimized function at theta . |
Einmahl, J.H.J., Kiriliouk, A., and Segers, J. (2018). A continuous updating weighted least squares estimator of tail dependence in high dimensions. Extremes 21(2), 205-233.
Einmahl, J.H.J., Kiriliouk, A., Krajina, A., and Segers, J. (2016). An Mestimator of spatial tail dependence. Journal of the Royal Statistical Society: Series B (Statistical Methodology), 78(1), 275-298.
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## define the locations of 9 stations
locations <- cbind(rep(c(1:3), each = 3), rep(1:3, 3))
## select the pairs of locations
indices <- selectGrid(cst = c(0,1), d = 9, locations = locations, maxDistance = 1.5)
## The Brown-Resnick process
set.seed(1)
x <- SpatialExtremes::rmaxstab(n = 1000, coord = locations, cov.mod = "brown",
range = 3, smooth = 1)
## Calculate the estimtors.
EstimationBR(x, locations, indices, 100, method = "Mestimator", isotropic = TRUE,
covMat = FALSE)$theta
EstimationBR(x, locations, indices, 100, method = "WLS", isotropic = TRUE,
covMat = FALSE)$theta
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.