plot.mevd: Plot return levels of MEVD fit

Description Usage Arguments Examples

View source: R/mevd.R

Description

Plot return levels of an mevd object.

Usage

1
2
3
     ## S3 method for class 'mevd'
plot(x, q = c(2,5,10,20,50,100,200), 
     ci = FALSE, type=c("all","rl","qq"), ...)

Arguments

x

mevd object.

q

vector of return periods, q > 1.

ci

if ci = TRUE, confidence intervals will be computed.

type

if omitted a return level plot type = 'rl' and a qq-plot type = 'qq' are shown.

...

Further parameters may also be supplied as arguments. See e.g. plot.

Examples

1
2
3
4
5
6
7
8
9
w <- 0.7
c <- 48
data <- matrix(NA,365,50)
for(y in 1:50){
     data[,y] <- rweibull(365,shape=w,scale=c)
}

fit <- fmev(data)
plot(fit)

mevd documentation built on Nov. 11, 2019, 3 p.m.

Related to plot.mevd in mevd...