These functions provide information about the generalized Weibull
distribution, also called the exponentiated Weibull, with scale
parameter equal to m
, shape equal to s
, and family
parameter equal to f
: density, cumulative distribution,
quantiles, log hazard, and random generation.
The generalized Weibull distribution has density
where
dgweibull(y, s, m, f, log=FALSE)
pgweibull(q, s, m, f)
qgweibull(p, s, m, f)
rgweibull(n, s, m, f)
vector of responses.
vector of quantiles.
vector of probabilities
number of values to generate
vector of location parameters.
vector of dispersion parameters.
vector of family parameters.
if TRUE, log probabilities are supplied.
J.K. Lindsey
dgweibull(5, 1, 3, 2)
pgweibull(5, 1, 3, 2)
qgweibull(0.65, 1, 3, 2)
rgweibull(10, 1, 3, 2)
Run the code above in your browser using DataLab