Pareto Distribution
Probability density, cumulative distribution, inverse cumulative distribution, random sample and starting values functions.
dpareto(x, scale = 1, shape = 1, log = FALSE) qpareto(p, scale = 1, shape = 1, lower.tail = TRUE, log.p = FALSE) ppareto(q, scale = 1, shape = 1, lower.tail = TRUE, log.p = FALSE) rpareto(n, scale = 1, shape = 1) spareto(x)
x |
A numeric vector of values. |
scale |
scale parameter. |
shape |
A string of the column in data for the shape aesthetic. |
log |
logical; if TRUE, probabilities p are given as log(p). |
p |
vector of probabilities. |
lower.tail |
logical; if TRUE (default), probabilities are |
log.p |
logical; if TRUE, probabilities p are given as log(p). |
q |
vector of quantiles. |
n |
number of observations. |
The pareto distribution has been deprecated as it is not suitable for SSD data. The functions are wrappers on the equivalent VGAM functions.
A numeric vector.
x <- seq(0.01, 5, by = 0.01) plot(x, dpareto(x), type = "l")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.