The Pareto Distribution
The Pareto distribution has the probability density function (PDF):
$$f(x | \alpha, \sigma) = \frac{\alpha \sigma^\alpha}{x^{\alpha + 1}}, \quad x \geq \sigma,$$
where:
- \(\alpha\)
is the shape parameter (\(\alpha > 0\)), which determines the tail heaviness of the distribution.
- \(\sigma\)
is the scale parameter (\(\sigma > 0\)), which determines the minimum possible value of \(x\).
The Pareto distribution is widely used in modelling phenomena with heavy tails, such as wealth distribution, insurance losses, and natural events.
This function samples from a proposal constructed using srpareto_optimize, employing the STORS algorithm.
By default, srpareto_custom() samples from the standard Pareto distribution with shape = 1 and rate = 1.
The proposal distribution is pre-optimized at package load time using srpareto_optimize() with
steps = 4091, creating a scalable proposal centred around the mode.