prob = 0.2; size = 10
y = rposbinom(n=1000, size, prob)
table(y)
mean(y) # Sample mean
prob / (1-(1-prob)^size) # Population mean
(ii = dposbinom(0:size, size, prob))
cumsum(ii) - pposbinom(0:size, size, prob) # Should be 0s
table(rposbinom(100, size, prob))
table(qposbinom(runif(1000), size, prob))
round(dposbinom(1:10, size, prob) * 1000) # Should be similar
barplot(rbind(dposbinom(x = 0:size, size, prob),
dbinom(x = 0:size, size, prob)),
beside = TRUE, col = c("blue","green"),
main=paste("Positive-binomial(", size, ",", prob, ") (blue) vs",
" Binomial(", size, ",", prob, ") (green)", sep=""),
names.arg = as.character(0:size), las=1)
Run the code above in your browser using DataLab