Compute approximations of the CDF using the normal approximation, normal-power approximation, shifted Gamma approximation or normal approximation to the shifted Gamma distribution.
variance: Variance of the distribution, default is 1.
skewness: Skewness coefficient of the distribution, this argument is not used for the normal approximation. Default is NULL meaning no skewness coefficient is provided.
method: Approximation method to use, one of "normal", "normal-power", "shifted Gamma" or "shifted Gamma normal". Default is "normal".
lower.tail: Logical indicating if the probabilities are of the form P(X≤x) (TRUE) or P(X>x) (FALSE). Default is TRUE.
log.p: Logical indicating if the probabilities are given as log(p), default is FALSE.
Details
The normal approximation for the CDF of the r.v. X is defined as
FX(x)≈Φ((x−μ)/σ)
where μ and σ2 are the mean and variance of X, respectively.
This approximation can be improved when the skewness parameter
ν=E((X−μ)3)/σ3
is available. The normal-power approximation of the CDF is then given by
FX(x)≈Φ(9/ν2+6z/ν+1−3/ν)
for z=(x−μ)/σ≥1 and 9/ν2+6z/ν+1≥0.
The shifted Gamma approximation uses the approximation
X≈Γ(4/ν2,2/(ν×σ))+μ−2σ/ν.
Here, we need that ν0.
The normal approximation to the shifted Gamma distribution approximates the CDF of X as
FX(x)≈Φ(16/ν2+8z/ν−16/ν2−1)
for z=(x−μ)/σ≥1. We need again that ν0.
See Section 6.2 of Albrecher et al. (2017) for more details.
Returns
Vector of estimates for the probabilities F(x)=P(X≤x).
References
Albrecher, H., Beirlant, J. and Teugels, J. (2017). Reinsurance: Actuarial and Statistical Aspects, Wiley, Chichester.