dgpd | R Documentation |
Density, cumulative density, quantiles and random number generation for the generalized Pareto distribution
dgpd(x, sigma, xi, u = 0, log.d = FALSE)
pgpd(q, sigma, xi, u = 0, lower.tail = TRUE, log.p = FALSE)
qgpd(p, sigma, xi, u = 0, lower.tail = TRUE, log.p = FALSE)
rgpd(n, sigma, xi, u = 0)
x , q , p |
Value, quantile or probability respectively. |
sigma |
Scale parameter. |
xi |
Shape parameter. |
u |
Threshold |
log.d , log.p |
Whether or not to work on the log scale. |
lower.tail |
Whether to return the lower tail. |
n |
Number of random numbers to simulate. |
Random number generation is done by transformation of a standard exponential.
Janet E Heffernan, Paul Metcalfe, Harry Southworth
x <- rgpd(1000, sigma=1, xi=.5)
hist(x)
x <- rgpd(1000, sigma=exp(rnorm(1000, 1, .25)), xi=rnorm(1000, .5, .2))
hist(x)
plot(pgpd(x, sigma=1, xi=.5))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.