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