Local_Pareto_Alpha | R Documentation |
Calculates the local Pareto alpha of the normal, lognormal and gamma distribution
Local_Pareto_Alpha(x, distribution, ...)
x |
Numeric. Vector of thresholds at which the local Pareto alpha is calculated. |
distribution |
Character.
|
... |
Arguments for the selected distribution |
Local Pareto alpha of the selected distribution at x
Riegel, U. (2008) Generalizations of common ILF models. Blaetter der DGVFM 29: 45–71
x <- 1:10 * 1e6
Local_Pareto_Alpha(x, "norm", mean = 5e6, sd = 2e6)
Local_Pareto_Alpha(x, "lnorm", meanlog = 0, sdlog = 4)
Local_Pareto_Alpha(x, "gamma", shape = 5, rate = 1e-6)
Local_Pareto_Alpha(x, "weibull", shape = 0.5, scale = 1e6)
Local_Pareto_Alpha(x, "exp", rate = 1e-6)
Local_Pareto_Alpha(x, "Pareto", t = 1e6, alpha = 1, truncation = 20e6)
Local_Pareto_Alpha(x, "GenPareto", t = 1e6, alpha_ini = 1, alpha_tail = 2)
Local_Pareto_Alpha(x, "PiecewisePareto", t = c(1e6, 3e6, 5e6), alpha = c(1, 2, 3),
truncation = 20e6, truncation_type = "wd")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.