ANOLLG | R Documentation |
Computes the pdf, cdf, hdf, quantile and random numbers of the beta extended distribution due to Haghbin et al. (2017) specified by the pdf
f=\frac{αβ\,g\,\bar{G}^{αβ-1}[1-\bar{G}^α]^{β-1}}{\{[1-\bar{G}^α]^β+\bar{G}^{αβ}\}^2}
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.
panollg(x, alpha = 1, beta = 1, G = pnorm, ...) danollg(x, alpha = 1, beta = 1, G = pnorm, ...) qanollg(q, alpha = 1, beta = 1, G = pnorm, ...) ranollg(n, alpha = 1, beta = 1, G = pnorm, ...) hanollg(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. |
panollg
gives the distribution function,
danollg
gives the density,
qanollg
gives the quantile function,
hanollg
gives the hazard function and
ranollg
generates random variables from the A New Odd log-logistic family of
distributions (ANOLL-G) for baseline cdf G.
Haghbin, Hossein, et al. "A new generalized odd log-logistic family of distributions." Communications in Statistics-Theory and Methods 46.20(2017): 9897-9920.
x <- seq(0, 1, length.out = 21) panollg(x) panollg(x, alpha = 2, beta = 2, G = pbeta, shape1 = 1, shape2 = 2) danollg(x, alpha = 2, beta = 2, G = pbeta, shape1 = 1, shape2 = 2) curve(danollg, -3, 3) qanollg(x, alpha = 2, beta = 2, G = pbeta, shape1 = 1, shape2 = 2) n <- 10 ranollg(n, alpha = 2, beta = 2, G = pbeta, shape1 = 1, shape2 = 2) hanollg(x, alpha = 2, beta = 2, G = pbeta, shape1 = 1, shape2 = 2) curve(hanollg, -3, 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.