Learn R Programming

Distributacalcul (version 0.2.2)

SL_pareto: Stop-loss of the Pareto distribution

Description

Stop-loss of the Pareto distribution with shape parameter \(\alpha\) and rate parameter \(\lambda\).

Usage

SL_pareto(d, shape, rate = 1/scale, scale = 1/rate)

Arguments

d

cut-off value.

shape

shape parameter \(\alpha\), must be positive.

rate

\(\lambda\) rate parameter, must be positive.

scale

alternative parameterization to the rate parameter, scale = 1 / rate.

Value

Function :

Invalid parameter values will return an error detailing which parameter is problematic.

Details

The Pareto distribution with rate parameter \(\lambda\) as well as shape parameter \(\alpha\) has density: $$f\left(x\right) = \frac{\alpha% \lambda^{\alpha}}{(\lambda + x)^{\alpha + 1}}$$ for \(x \in \mathcal{R}^+\), \(\alpha, \lambda > 0\).

See Also

Other Pareto Distribution: E_pareto(), Elim_pareto(), Etronq_pareto(), Mexcess_pareto(), TVaR_pareto(), V_pareto(), VaR_pareto(), d_pareto(), kthmoment_pareto(), p_pareto()

Examples

Run this code
# NOT RUN {
# With scale parameter
SL_pareto(d = 2, shape = 5, rate = 2)

# With rate parameter
SL_pareto(d = 2, shape = 5, scale = 0.5)

# }

Run the code above in your browser using DataLab