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