cv.evmOpt | R Documentation |
Cross-validation for the shape parameter in an extreme values model
## S3 method for class 'evmOpt'
cv(
object,
folds = 10,
...,
penalty = "gaussian",
range = seq(1, 25, length.out = 25),
shape = NULL
)
object |
An object of class 'evmOpt' as returned by |
folds |
Integer giving the number of cross-validation folds to use.
Defaults to |
... |
Not used. |
penalty |
String specifying the type of penalty to use. Defaults to
|
range |
A sequence of values for the penalty parameter. Defaults to
|
shape |
String giving the name of the shape parameter. Defaults to
|
Only the shape parameter is assumed to be penalized. The penalty can be thought of in terms of the variance of a prior distribution, which is equivalent to a quadratic penalty. Because the shape parameter will usually be between -1/2 and 1/2, a prior N(0, 1/16) distribution will likely be a good starting point, so values that span 16 will usually be appropriate.
Note that the procedure appears to frequently prefer larger penalties over smaller ones, effectively driving the shape parameter to zero. However, if you are fitting distributions that can model long tails, there is probably a good reason for that and you should use your prior knowledge to determine if non-zero values of the shape are plausible, rather than rely solely on an automated procedure.
Also note that small numbers of observations can have a big impact on
parameter estimates. Because cross-validation involves randomly assigning
values to folds, the results are generally different from one run to
the next. These to features combined can produce quite big differences
between cross-validation runs and it is advisable to use either
leave-one-out (by setting folds
to be the same as the length of
the data), or to run the procedure several times and average over them.
@note At present, only models without covariates are implemented.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.