powered by
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)
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)
A numeric vector of values.
scale parameter.
A string of the column in data for the shape aesthetic.
logical; if TRUE, probabilities p are given as log(p).
vector of probabilities.
logical; if TRUE (default), probabilities are P[X <= x],otherwise, P[X > x].
P[X <= x]
P[X > x]
vector of quantiles.
number of observations.
A numeric vector.
The pareto distribution has been deprecated as it is not suitable for SSD data. The functions are wrappers on the equivalent VGAM functions.
VGAM::dpareto()
# NOT RUN { x <- seq(0.01, 5, by = 0.01) plot(x, dpareto(x), type = "l") # }
Run the code above in your browser using DataLab