powered by
Density, distribution function, and random generation for the zero-inflated gamma distribution reparameterised in terms of mean and standard deviation.
dzigamma2(x, mean = 1, sd = 1, zeroprob = 0, log = FALSE)pzigamma2(q, mean = 1, sd = 1, zeroprob = 0)rzigamma2(n, mean = 1, sd = 1, zeroprob = 0)
pzigamma2(q, mean = 1, sd = 1, zeroprob = 0)
rzigamma2(n, mean = 1, sd = 1, zeroprob = 0)
dzigamma2 gives the density, pzigamma2 gives the distribution function, and rzigamma generates random deviates.
dzigamma2
pzigamma2
rzigamma
vector of quantiles
mean parameter, must be positive.
standard deviation parameter, must be positive.
zero-inflation probability between 0 and 1.
logical; if TRUE, probabilities/ densities \(p\) are returned as \(\log(p)\).
TRUE
number of random values to return
This implementation allows for automatic differentiation with RTMB.
RTMB
x <- rzigamma2(1, 2, 1, 0.5) d <- dzigamma2(x, 2, 1, 0.5) p <- pzigamma2(x, 2, 1, 0.5)
Run the code above in your browser using DataLab