Gumbel | R Documentation |
Density, quantiles, and cumulative probability of the Gumbel
distribution. The standard Gumbel has \mu
value of 0 and
\sigma
value of one.
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)
log |
|
mu |
|
n |
|
p |
|
q |
|
sigma |
|
x |
|
numeric, probability (pGumbel()
), quantile (qGumbel()
),
density (dGumbel()
) or random variates (rGumbel()
) for
the Gumbel distribution with location parameter \mu
and
scale parameter \sigma
.
rGumbelSim <- rGumbel(1000, 1.0, 2.5)
quantValue <- 4.5
pGEV(q = quantValue, xi = 0, mu = 1.0, sigma = 2.5)
pGumbel(q = quantValue, mu = 1.0, sigma = 2.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.