dist_pareto {distributional} | R Documentation |
The Pareto distribution
Description
Usage
dist_pareto(shape, scale)
Arguments
shape , scale |
parameters. Must be strictly positive. |
See Also
Examples
dist <- dist_pareto(shape = c(10, 3, 2, 1), scale = rep(1, 4))
dist
mean(dist)
variance(dist)
support(dist)
generate(dist, 10)
density(dist, 2)
density(dist, 2, log = TRUE)
cdf(dist, 4)
quantile(dist, 0.7)
[Package distributional version 0.4.0 Index]