See Pareto
Arguments
- shape
Scalar shape parameter, or
NULL
as a placeholder.- scale
Scalar scale parameter, or
NULL
as a placeholder.
See also
Other Distributions:
Distribution
,
dist_bdegp()
,
dist_beta()
,
dist_binomial()
,
dist_blended()
,
dist_dirac()
,
dist_discrete()
,
dist_empirical()
,
dist_erlangmix()
,
dist_exponential()
,
dist_gamma()
,
dist_genpareto()
,
dist_lognormal()
,
dist_mixture()
,
dist_negbinomial()
,
dist_normal()
,
dist_poisson()
,
dist_translate()
,
dist_trunc()
,
dist_uniform()
,
dist_weibull()
Examples
d_pareto <- dist_pareto(shape = 3, scale = 1)
x <- d_pareto$sample(100)
d_emp <- dist_empirical(x)
plot_distributions(
empirical = d_emp,
theoretical = d_pareto,
estimated = d_pareto,
with_params = list(
estimated = inflate_params(
fitdistrplus::fitdist(x, distr = "pareto")$estimate
)
),
.x = seq(0, 2, length.out = 100)
)
#> Warning: The dpareto function should return a vector of with NaN values when input has inconsistent values and not raise an error