Coefficients and Standard Errors
coSd.fevdTList.Rd
Extracts and show the coefficients of a fevdTList
object
along with their standard deviations.
Usage
# S3 method for fevdTList
coSd(object, sOnly = FALSE, ...)
Arguments
- object
An object with class
"fevd"
.- sOnly
Logical. If
TRUE
only the standard deviation (a.k.a standard errors) wille be show.- ...
Not used.
Examples
library(extRemes)
data(Fort)
u0 <- quantile(Fort$Prec, prob = c(0.95, 0.97, 0.98))
Fits <- list()
for (i in 1:3) {
Fits[[i]] <- fevd(x = Prec, data = Fort, threshold = u0[i], type = "GP")
}
class(Fits) <- "fevdTList"
coSd(Fits)
#> scale shape
#> [1,] 0.290 [0.011] 0.208 [0.029]
#> [2,] 0.340 [0.016] 0.180 [0.036]
#> [3,] 0.374 [0.022] 0.177 [0.045]