pPareto | R Documentation |
Calculates the cumulative distribution function of a Pareto distribution
pPareto(x, t, alpha, truncation = NULL)
x |
Numeric. The function evaluates the CDF at |
t |
Numeric. Threshold of the Pareto distribution. |
alpha |
Numeric. Pareto alpha. |
truncation |
Numeric. If |
Distribution function of the Pareto distribution with parameters t
and alpha
evaluated at x
x <- 0:10 * 1000
pPareto(x, 1000, 2)
pPareto(x, 1000, 2, truncation = 5000)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.