Density, distribution function, quantile function and random generation for the three-parameter Weibull.
dweibull3(x, shape, scale = 1, loc = 0, log = FALSE)
pweibull3(q, shape, scale, loc = 0, lower.tail = TRUE, log.p = FALSE)
qweibull3(p, shape, scale, loc = 0, lower.tail = TRUE, log.p = FALSE)
rweibull3(n, shape, scale = 1, loc = 0)
vector of quantiles.
shape, scale and location parameters. The two latter
default to 1
and 0
respectively.
logical; if TRUE
, probabilities p
are given as
log(p)
.
vector of probabilities.
number of observations. If length(n) > 1
, the length is
taken to be the number required.
logical; if TRUE (default), probabilities are \(P[X \le x]\), otherwise, \(P[X > x]\).
dweibull
for the Weibull distribution.