Pareto_PDF {Pareto} | R Documentation |
Density of the Pareto Distribution
Description
Calculates the density function of the Pareto distribution. This function is deprecated. Use dPareto
instead.
Usage
Pareto_PDF(x, t, alpha, truncation = NULL)
Arguments
x |
Numeric. The function evaluates the density at |
t |
Numeric. Threshold of the Pareto distribution. |
alpha |
Numeric. Pareto alpha. |
truncation |
Numeric. If |
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]