View source: R/summary.quantiles.R
summary.quantiles | R Documentation |
Calculating and printing of summary statistics to a given quantiles-object.
## S3 method for class 'quantiles' summary(object, ci.level = 0.9, ...)
object |
object of quantiles. |
ci.level |
numeric vector of length 1 giving the confidence level (default is 0.9). |
... |
additional arguments submitted to |
A summary.quantiles
-object, a list with dimensions
q
ci.level
ci
cov
It is printed with print.summary.quantiles
.
quantiles
, est_cov
x <- cbind(rgev(100, shape = .2), rgev(100, shape = .2)) q <- quantiles(parameters(TLMoments(x[, 1]), "gev"), c(.9, .95, .99)) summary(q) summary(q, select = c(.9, .99)) q <- quantiles(parameters(TLMoments(x[, 1], rightrim = 1), "gev"), .95) summary(q) q <- quantiles(parameters(TLMoments(x), "gev"), c(.9, .95, .99)) summary(q) summary(q, select = .95) q <- quantiles(as.parameters(loc = 10, scale = 5, shape = .3, distr = "gev"), c(.9, .99)) summary(q) summary(q, rightrim = 1, set.n = 250)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.