powered by
Density, distribution function, quantile function, random generation and starting values for the Pareto distribution with scale and shape parameters.
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].
vector of quantiles.
number of observations.
A numeric vector.
The functions are wrappers on the equivalent VGAM functions.
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