dgevr {gevreg} | R Documentation |
Vectorized density, distribution and quantile function for the GEV distribution.
dgevr(x, loc = 0, scale = 1, shape = 0, log = FALSE) pgevr(q, loc = 0, scale = 1, shape = 0, lower.tail = TRUE) qgevr(p, loc = 0, scale = 1, shape = 0, lower.tail = TRUE)
x, q |
vector of quantiles for |
p |
vector of probabilitis for |
loc, scale, shape |
vector of location, scale and shape parameters. |
log |
locigal; if |
lower.tail |
logical; if |
dgevr,pgevr,qgevr
GEV density, distribution and quantile function which can take location, scale and shape parameters as vector. Simply modifed versions of dgev
, pgev
and qgev
of package SpatialExtremes
.
If not specified, "loc", "scale" and "shape" assume the default values of "0", "1", and "0", respectively.
dgevr(seq(10,100,10)) dgevr(rep(seq(10,100,10),3),loc=1:3,scale=1:3,shape=rep(0,3))