powered by
Computes the cumulative distribution function (CDF) for a generalized Pareto distribution with location mu, scale sigma, and shape k.
mu
sigma
k
pgeneralized_pareto( q, mu = 0, sigma = 1, k = 0, lower.tail = TRUE, log.p = FALSE )
A numeric vector of probabilities.
Numeric vector of quantiles.
Location parameter.
Scale parameter (must be positive).
Shape parameter.
Logical; if TRUE (default), probabilities are P[X <= x].
TRUE
P[X <= x]
Logical; if TRUE, probabilities are returned as log(p).
log(p)
pgeneralized_pareto(q = c(1, 2, 5), mu = 0, sigma = 1, k = 0.2)
Run the code above in your browser using DataLab