Skellam {extraDistr} | R Documentation |
Skellam distribution
Description
Probability mass function and random generation for the Skellam distribution.
Usage
dskellam(x, mu1, mu2, log = FALSE)
rskellam(n, mu1, mu2)
Arguments
x |
vector of quantiles. |
mu1 , mu2 |
positive valued parameters. |
log |
logical; if TRUE, probabilities p are given as log(p). |
n |
number of observations. If |
Details
If and
follow Poisson distributions with means
and
, than
follows
Skellam distribution parametrized by
and
.
Probability mass function
References
Karlis, D., & Ntzoufras, I. (2006). Bayesian analysis of the differences of count data. Statistics in medicine, 25(11), 1885-1905.
Skellam, J.G. (1946). The frequency distribution of the difference between two Poisson variates belonging to different populations. Journal of the Royal Statistical Society, series A, 109(3), 26.
Examples
x <- rskellam(1e5, 5, 13)
xx <- -40:40
plot(prop.table(table(x)), type = "h")
lines(xx, dskellam(xx, 5, 13), col = "red")
[Package extraDistr version 1.10.0 Index]