50% off | Unlimited Data & AI Learning

Last chance! 50% off unlimited learning

Sale ends in


Distributacalcul (version 0.2.2)

SL_burr: Stop-loss of the Burr distribution

Description

Stop-loss of the Burr distribution with shape parameters α (shape1) and τ (shape2) as well as rate parameter λ.

Usage

SL_burr(d, shape1, shape2, rate = 1/scale, scale = 1/rate)

Arguments

d

cut-off value.

shape1

first shape parameter α, must be positive integer.

shape2

second shape parameter τ, must be positive integer.

rate

λ is the rate parameter, must be positive.

scale

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

Value

Function :

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

Details

The Burr distribution with rate parameter λ as well as shape parameters α and τ has density: f(x)=ατλαxτ1(λ+xτ)α+1 for xR+, α,τ,λ>0.

See Also

Other Burr Distribution: E_burr(), Elim_burr(), Etronq_burr(), Mexcess_burr(), TVaR_burr(), V_burr(), VaR_burr(), kthmoment_burr()

Examples

Run this code
# NOT RUN {
# With scale parameter
SL_burr(d = 2, rate = 2, shape1 = 2, shape2 = 5)

# With rate parameter
SL_burr(d = 2, scale = 0.5, shape1 = 2, shape2 = 5)

# }

Run the code above in your browser using DataLab