Description Details Author(s) References Examples
Package Compounding provides values of the pdf, cdf and hazard rate functions of the compounding distribution. Also it is possible to draw random sample and to compute main characteristics of the compounding distribution.
Compound distributions can be characterized as follows:
Suppose a device has an unknown number, N, of initial defects of same kind (for example, a number of semiconductors from a defective lot). Suppose X_i's represent their lifetimes and that each defect can be detected only after causing failure. Then the time to the first failure of the device is X = min(X_1, X_2, ldots, X_N).
Suppose a parallel system has N components. Let X_1, X_2, ldots, X_N denote their lifetimes. The system will fail as soon as any one of the components fails. The system's lifetime is X = min (X_1, X_2, ldots, X_N).
Package: | Compounding |
Type: | Package |
Version: | 1.0.1 |
Date: | 2012-10-19 |
License: | What license is it under? |
LazyLoad: | yes |
In this package we give some programs for working with continuous distributions obtained by compounding continuous distributions with discrete distributions. The programs compute values of cumulative distribution function, probability density function, quantile function and hazard rate function, generate random samples from a population with compounding distribution, and compute mean, variance, skewness and kurtosis of a random variable with a compounding distribution. We consider 24 discrete distributions which can be compounded with any continuous distribution implemented in R.
S.Nadarajah, B. V. Popovic, M. M. Ristic,
Maintainer: B.V. Popovic Email: bozidarpopovic@gmail.com
S. Nadarajah, B.V. Popovic, M.M. Ristic (2012) Compounding: an R package for computing continuous distributions obtained by compounding a continuous and a discrete distribution, Computational Statistics, DOI 10.1007/s00180-012-0336-y, http://www.springerlink.com/content/6r464013w6mp3545/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | compoundDist <- c("geometric","poisson","negativebinomial","binomial",
"logarithmic","binomialbinomial","binomialpoisson",
"poissonbinomial","neymantypea","polyaaeppli",
"poissonpascal","pascalpoisson",
"logarithmicbinomial","logarithmicpoisson",
"poissonlindley",
"hyperpoisson","yule","waring","kattitypeh1",
"kattitypeh2","neymantypeb","neymantypec",
"hypergeometric","thomas")
parentD<-"exp"
compoundD<-"poisson"
params<-2.5
x<-0.5
k<-2
dCompound(x,parentD,compoundD,compoundDist,params)
qCompound(x,parentD,compoundD,compoundDist,params)
hCompound(x,parentD,compoundD,compoundDist,params)
momentCompound(k, parentD, compoundD, compoundDist,params)
|
Loading required package: hypergeo
[1] 0.6177125
[1] 0.2819691
[1] 1.942805
[1] 0.6648827
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.