Lomax {Renext} | R Documentation |
Lomax distribution
Description
Density function, distribution function, quantile function and random generation for the Lomax distribution.
Usage
dlomax(x, scale = 1.0, shape = 4.0, log = FALSE)
plomax(q, scale = 1.0, shape = 4.0, lower.tail = TRUE)
qlomax(p, scale = 1.0, shape = 4.0)
rlomax(n, scale = 1.0, shape = 4.0)
Arguments
x , q |
Vector of quantiles. |
p |
Vector of probabilities. |
n |
Number of observations. |
scale , shape |
Scale and shape parameters. Vectors of length > 1 are not accepted. |
log |
Logical; if |
lower.tail |
Logical; if |
Details
The Lomax distribution function with shape and scale
has survival function
This distribution has increasing hazard and decreasing mean
residual life (MRL). The coefficient of variation decreases with
, and tends to
for large
. The
default value
corresponds to
.
Value
dlomax
gives the density function, plomax
gives the
distribution function, qlomax
gives the quantile function, and
rlomax
generates random deviates.
Note
This distribution is sometimes called log-exponential. It is a
special case of Generalised Pareto Distribution (GPD) with positive
shape , scale
and location
. The
Lomax and GPD parameters are related according to
The Lomax distribution can be used in POT to describe
excesses following GPD with shape thus with decreasing
hazard and increasing Mean Residual Life.
Note that the exponential distribution with rate is the
limit of a Lomax distribution having large scale
and large
shape
, with the constraint on the shape/scale ratio
.
References
Johnson N. Kotz S. and N. Balakrishnan Continuous Univariate Distributions vol. 1, Wiley 1994.
Lomax distribution in Wikipedia
See Also
flomax
to fit the Lomax distribution by Maximum
Likelihood.
Examples
shape <- 5; scale <- 10
xl <- qlomax(c(0.00, 0.99), scale = scale, shape = shape)
x <- seq(from = xl[1], to = xl[2], length.out = 200)
f <- dlomax(x, scale = scale, shape = shape)
plot(x, f, type = "l", main = "Lomax density")
F <- plomax(x, scale = scale, shape = shape)
plot(x, F, type ="l", main ="Lomax distribution function")