GenPareto_Layer_Mean {Pareto} | R Documentation |
Layer Mean of the generalized Pareto Distribution
Description
Calculates the expected loss of a generalized Pareto distribution in a reinsurance layer
Usage
GenPareto_Layer_Mean(
Cover,
AttachmentPoint,
t,
alpha_ini,
alpha_tail,
truncation = NULL
)
Arguments
Cover |
Numeric. Cover of the reinsurance layer. Use |
AttachmentPoint |
Numeric. Attachment point of the reinsurance layer. |
t |
Numeric. Threshold of the Pareto distribution. If |
alpha_ini |
Numeric. Initial Pareto alpha (at |
alpha_tail |
Numeric. Tail Pareto alpha. |
truncation |
Numeric. If |
Value
The expected loss of the (truncated) Pareto distribution with parameters t
and alpha
in the layer
Cover
xs AttachmentPoint
Examples
GenPareto_Layer_Mean(4000, 1000, 1000, 1, 3)
GenPareto_Layer_Mean(4000, 1000, t = 1000, alpha_ini = 1, alpha_tail = 3)
GenPareto_Layer_Mean(4000, 1000, t = 5000, alpha_ini = 1, alpha_tail = 3)
GenPareto_Layer_Mean(4000, 1000, t = 1000, alpha_ini = 1, alpha_tail = 3, truncation = 5000)
GenPareto_Layer_Mean(9000, 1000, t = 1000, alpha_ini = 1, alpha_tail = 3, truncation = 5000)
[Package Pareto version 2.4.5 Index]