genlog {SCI} | R Documentation |
Generalized Logistic Distribution
Description
Density, distribution and quantile function of the generalized logistic distribution
Usage
pgenlog(q, shape, scale, location)
dgenlog(x, shape, scale, location)
qgenlog(p, shape, scale, location)
Arguments
x , q |
vector of quantiles. |
p |
vector of probabilities. |
shape |
shape parameter |
scale |
scale parameter |
location |
location parameter |
Details
The functions of the genlog
family are a reimplementation of
the Generalized Logistic Distribution in the lmomco
package, making the code compatible with the standard nomenclature for
distribution in R. The original functions in lmomco are
pdfglo
(density function), quaglo
(quantile function) and cdfglo
(distribution function).
Value
dgenlog
gives the density (pdf), pgenlog
gives
the distribution function (cdf), and qgenlog
gives the
quantile function (inverse cdf).
Author(s)
James Stagge & Lukas Gudmundsson
References
Asquith, W.H., 2013: lmomco – L-moments, trimmed L-moments, L-comoments, censored L-moments, and many distributions. R package version 1.7.8 , Tech University, Lubbock, Texas.
Examples
dgenlog(1, shape=1, scale=2, location=3)