summary.PWMs {TLMoments} | R Documentation |
Calculating and printing of summary statistics to a given PWMs-object.
## S3 method for class 'PWMs'
summary(object, ci.level = 0.9, ...)
object |
object of PWMs. |
ci.level |
numeric vector of length 1 giving the confidence level (default is 0.9). |
... |
additional arguments submitted to |
A summary.PWMs
-object, a list with dimensions
pwm
ci.level
ci
cov
It is printed with print.summary.PWMs
.
x <- cbind(rgev(100, shape = .2), rgev(100, shape = .2))
summary(PWMs(x[, 1]))
summary(PWMs(x[, 1]), distr = "gev")
summary(PWMs(x[, 1]), distr = "gev", select = 1:2)
summary(PWMs(x))
summary(PWMs(x), select = 1:2)
## Not run:
summary(as.PWMs(c(15, 4, .5)))
## End(Not run)