qPiecewisePareto | R Documentation |
Calculates the quantile function of a piecewise Pareto distribution
qPiecewisePareto(p, t, alpha, truncation = NULL, truncation_type = "lp")
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 |
Quantile function of the piecewise Pareto distribution with parameter vectors t
and alpha
evaluated at p
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.