pPareto: Distribution Function of the Pareto Distribution

View source: R/Functions.R

pParetoR Documentation

Distribution Function of the Pareto Distribution

Description

Calculates the cumulative distribution function of a Pareto distribution

Usage

pPareto(x, t, alpha, truncation = NULL)

Arguments

x

Numeric. The function evaluates the CDF at x.

t

Numeric. Threshold of the 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

Distribution function of the Pareto distribution with parameters t and alpha evaluated at x

Examples

x <- 0:10 * 1000
pPareto(x, 1000, 2)
pPareto(x, 1000, 2, truncation = 5000)



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