Density, quantiles, and cumulative probability of the Gumbel
distribution. The standard Gumbel has \(\mu\) value of 0 and
\(\sigma\) value of one.
Usage
dGumbel(x, mu = 0, sigma = 1, log = FALSE)
qGumbel(p, mu = 0, sigma = 1)
pGumbel(q, mu = 0, sigma = 1)
rGumbel(n, mu = 0, sigma = 1)
Value
numeric, probability (pGumbel()), quantile (qGumbel()),
density (dGumbel()) or random variates (rGumbel()) for
the Gumbel distribution with location parameter \(\mu\) and
scale parameter \(\sigma\).
Arguments
log
logical, whether log values of density should be
returned.