EOLLG | R Documentation |
Computes the pdf, cdf, hdf, quantile and random numbers of the beta extended distribution due to Alizadeh et al. (2020) specified by the pdf
f=\frac{αβ\,g\,G^{αβ-1}\bar{G}^{α-1}}{[G^α+\bar{G}^α]^{β+1}}
for G any valid continuous cdf , \bar{G}=1-G, g the corresponding pdf, α > 0, the first shape parameter, and β > 0, the second shape parameter.
peollg(x, alpha = 1, beta = 1, G = pnorm, ...) deollg(x, alpha = 1, beta = 1, G = pnorm, ...) qeollg(q, alpha = 1, beta = 1, G = pnorm, ...) reollg(n, alpha = 1, beta = 1, G = pnorm, ...) heollg(x, alpha = 1, beta = 1, G = pnorm, ...)
x |
scaler or vector of values at which the pdf or cdf needs to be computed. |
alpha |
the value of the first shape parameter, must be positive, the default is 1. |
beta |
the value of the second shape parameter, must be positive, the default is 1. |
G |
A baseline continuous cdf. |
... |
The baseline cdf parameters. |
q |
scaler or vector of probabilities at which the quantile needs to be computed. |
n |
number of random numbers to be generated. |
peollg
gives the distribution function,
deollg
gives the density,
qeollg
gives the quantile function,
heollg
gives the hazard function and
reollg
generates random variables from the Exponentiated Odd log-logistic family of
distributions (EOLL-G) for baseline cdf G.
ALIZADEH, Morad; TAHMASEBI, Saeid; HAGHBIN, Hossein. The exponentiated odd log-logistic family of distributions: Properties and applications. Journal of Statistical Modelling: Theory and Applications, 2020, 1. Jg., Nr. 1, S. 29-52.
x <- seq(0, 1, length.out = 21) peollg(x) peollg(x, alpha = 2, beta = 2, G = pbeta, shape1 = 1, shape2 = 2) deollg(x, alpha = 2, beta = 2, G = pbeta, shape1 = 1, shape2 = 2) curve(deollg, -3, 3) qeollg(x, alpha = 2, beta = 2, G = pbeta, shape1 = 1, shape2 = 2) n <- 10 reollg(n, alpha = 2, beta = 2, G = pbeta, shape1 = 1, shape2 = 2) heollg(x, alpha = 2, beta = 2, G = pbeta, shape1 = 1, shape2 = 2) curve(heollg, -3, 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.