dPareto {Pareto} | R Documentation |
Density of the Pareto Distribution
Description
Calculates the density function of the Pareto distribution
Usage
dPareto(x, t, alpha, truncation = NULL)
Arguments
x |
Numeric. The function evaluates the density 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
Density function of the Pareto distribution with parameters t
and alpha
evaluated at x
Examples
x <- 0:10 * 1000
dPareto(x, 1000, 2)
dPareto(x, 1000, 2, truncation = 5000)
[Package Pareto version 2.4.5 Index]