summary.quantiles {TLMoments} | R Documentation |
Summary quantiles
Description
Calculating and printing of summary statistics to a given quantiles-object.
Usage
## S3 method for class 'quantiles'
summary(object, ci.level = 0.9, ...)
Arguments
object |
object of quantiles. |
ci.level |
numeric vector of length 1 giving the confidence level (default is 0.9). |
... |
additional arguments submitted to |
Value
A summary.quantiles
-object, a list with dimensions
-
q
-
ci.level
-
ci
-
cov
It is printed with print.summary.quantiles
.
See Also
Examples
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)
[Package TLMoments version 0.7.5.3 Index]