qPiecewisePareto {Pareto} | R Documentation |
Quantile Function of the Piecewise Pareto Distribution
Description
Calculates the quantile function of a piecewise Pareto distribution
Usage
qPiecewisePareto(p, t, alpha, truncation = NULL, truncation_type = "lp")
Arguments
p |
Numeric. The function evaluates the quantile function at |
t |
Numeric vector. Thresholds of the piecewise Pareto distribution. |
alpha |
Numeric vector. |
truncation |
Numeric. If |
truncation_type |
Character. If |
Value
Quantile function of the piecewise Pareto distribution with parameter vectors t
and alpha
evaluated at p
Examples
t <- c(1000, 2000, 3000)
alpha <- c(1, 1.5, 2)
p <- 0:10 * 0.1
qPiecewisePareto(p, t, alpha)
qPiecewisePareto(p, t, alpha, truncation = 5000, truncation_type = "lp")
qPiecewisePareto(p, t, alpha, truncation = 5000, truncation_type = "wd")
[Package Pareto version 2.4.5 Index]