pGenPareto {Pareto} | R Documentation |
Distribution Function of the generalized Pareto Distribution
Description
Calculates the cumulative distribution function of a generalized Pareto distribution
Usage
pGenPareto(x, t, alpha_ini, alpha_tail, truncation = NULL)
Arguments
x |
Numeric. The function evaluates the CDF at |
t |
Numeric. Threshold of the generalized Pareto distribution. |
alpha_ini |
Numeric. Initial Pareto alpha. |
alpha_tail |
Numeric. Tail Pareto alpha. |
truncation |
Numeric. If |
Value
Distribution function of the generalized Pareto distribution with parameters t
, alpha_ini
and alpha_tail
evaluated at x
Examples
x <- 0:10 * 1000
pGenPareto(x, 1000, 1, 3)
pGenPareto(x, 1000, 1, 3, truncation = 5000)
[Package Pareto version 2.4.5 Index]