qPareto: Quantile Function of the Pareto Distribution

View source: R/Functions.R

qParetoR 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 p.

t

Numeric. Threshold of the piecewise Pareto distribution.

alpha

Numeric. Pareto alpha.

truncation

Numeric. If truncation is not NULL and truncation > t, then the Pareto distribution is truncated at truncation.

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)


ulrichriegel/Pareto documentation built on April 21, 2023, 8:39 p.m.