CLNB distribution {ComRiskModel}R Documentation

Complementary Lomax negative binomial distribution

Description

Evaluates the PDF, CDF, QF, random numbers and MLEs based on the complementary Lomax negative binomial (CLNB) distribution. The CDF of the complementary G negative binomial distribution is as follows:

F(x)=\frac{\left(1-\lambda G(x)\right)^{-s}-1}{(1-\lambda)^{-s}-1};\qquad\lambda\in\left(0,1\right),s>0,

where G(x) represents the baseline Lomax CDF, it is given by

G\left(x\right)=1-\left[1+\left(\frac{x}{b}\right)\right]^{-q};\qquad b,q>0.

By setting G(x) in the above Equation, yields the CDF of the CLNB distribution.

Usage

dCLNB(x, b, q, s, lambda, log = FALSE)
pCLNB(x, b, q, s, lambda, log.p = FALSE, lower.tail = TRUE)
qCLNB(p, b, q, s, lambda, log.p = FALSE, lower.tail = TRUE)
rCLNB(n, b, q, s, lambda)
mCLNB(x, b, q, s, lambda, method="B")

Arguments

x

A vector of (non-negative integer) quantiles.

p

A vector of probablities.

n

The number of random values to be generated under the CLNB distribution.

lambda

The strictly positive parameter of the negative binomial distribution \lambda \in (0,1).

s

The positive parameter of the negative binomial distribution s > 0.

b

The strictly positive parameter of the baseline Lomax distribution (b > 0).

q

The strictly positive shapes parameter of the baseline Lomax distribution (q > 0).

lower.tail

if FALSE then 1-F(x) are returned and quantiles are computed 1-p.

log

if TRUE, probabilities p are given as log(p).

log.p

if TRUE, probabilities p are given for exp(p).

method

the procedure for optimizing the log-likelihood function after setting the intial values of the parameters and data values for which the CLNB distribution is fitted. It could be "Nelder-Mead", "BFGS", "CG", "L-BFGS-B", or "SANN". "BFGS" is set as the default.

Details

These functions allow for the evaluation of the PDF, CDF, QF, random numbers and MLEs of the unknown parameters with the standard error (SE) of the estimates of the CLNB distribution. Additionally, it offers goodness-of-fit statistics such as the AIC, BIC, -2L, A test, W test, Kolmogorov-Smirnov test, P-value, and convergence status.

Value

dCLNB gives the (log) probability function. pCLNB gives the (log) distribution function. qCLNB gives the quantile function. rCLNB generates random values. mCLNB gives the estimated parameters along with SE and goodness-of-fit measures.

Author(s)

Muhammad Imran and M.H Tahir.

R implementation and documentation: Muhammad Imran imranshakoor84@yahoo.com and M.H Tahir mht@iub.edu.pk.

References

Tahir, M. H., & Cordeiro, G. M. (2016). Compounding of distributions: a survey and new generalized classes. Journal of Statistical Distributions and Applications, 3, 1-35.

Kleiber, C., & Kotz, S. (2003). Statistical size distributions in economics and actuarial sciences. John Wiley & Sons.

See Also

pCFBio

Examples

x<-rCLNB(20,2,1,2,0.7)
dCLNB(x,2,1,2,0.5)
pCLNB(x,2,1,2,0.3)
qCLNB(0.7,2,1,2,0.2)
mCLNB(x,0.2,0.1,0.2,0.5, method="B")

[Package ComRiskModel version 0.2.0 Index]