View source: R/summary.TLMoments.R
summary.TLMoments | R Documentation |
Calculating and printing of summary statistics to a given TLMoments-object.
## S3 method for class 'TLMoments' summary(object, ci.level = 0.9, ...)
object |
object of TLMoments. |
ci.level |
numeric vector of length 1 giving the confidence level (default is 0.9). |
... |
additional arguments submitted to |
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
.
TLMoments
, est_cov
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.