PiecewisePareto_PDF {Pareto} | R Documentation |
Density of the Piecewise Pareto Distribution
Description
Calculates the density function of the piecewise Pareto distribution. This function is deprecated. Use dPiecewisePareto
instead.
Usage
PiecewisePareto_PDF(x, t, alpha, truncation = NULL, truncation_type = "lp")
Arguments
x |
Numeric. The function evaluates the density at |
t |
Numeric vector. Thresholds of the piecewise Pareto distribution. |
alpha |
Numeric vector. |
truncation |
Numeric. If |
truncation_type |
Character. If |
Value
Density function of the piecewise Pareto distribution with parameter vectors t
and alpha
evaluated at x
Examples
t <- c(1000, 2000, 3000)
alpha <- c(1, 1.5, 2)
x <- 0:10 * 1000
dPiecewisePareto(x, t, alpha)
dPiecewisePareto(x, t, alpha, truncation = 5000, truncation_type = "lp")
dPiecewisePareto(x, t, alpha, truncation = 5000, truncation_type = "wd")
[Package Pareto version 2.4.5 Index]