summary.TLMoments {TLMoments} | R Documentation |
Summary TLMoments
Description
Calculating and printing of summary statistics to a given TLMoments-object.
Usage
## S3 method for class 'TLMoments'
summary(object, ci.level = 0.9, ...)
Arguments
object |
object of TLMoments. |
ci.level |
numeric vector of length 1 giving the confidence level (default is 0.9). |
... |
additional arguments submitted to |
Value
A summary.TLMoments
-object, a list with dimensions
-
tlm
-
ci.level
-
lambda.ci
-
lambda.cov
-
ratio.ci
-
ratio.cov
It is printed with print.summary.TLMoments
.
See Also
Examples
tlm <- TLMoments(rgev(100, shape = .2))
summary(tlm)
tlm <- TLMoments(rgev(100, shape = .2), rightrim = 1)
summary(tlm, select = 3:4)
tlm <- TLMoments(rgev(100, shape = .2), max.order = 2, rightrim = 1)
summary(tlm)
tlm <- TLMoments(matrix(rgev(100, shape = .2), nc = 2))
summary(tlm, select = 3:4)
tlm <- TLMoments(matrix(rgev(100, shape = .2), nc = 2), max.order = 3)
summary(tlm, ci = .95, distr = "gev")
tlm <- as.TLMoments(c(15, 5, 1.3))
summary(tlm, distr = "gev", set.n = 100)
[Package TLMoments version 0.7.5.3 Index]