(This article was first published on Freakonometrics - Tag - R-english, and kindly contributed to R-bloggers)
Here and there, I mentioned two codes to generated quasiPoisson random variables. And in both of them, the negative binomial approximation seems to be wrong. Recall that the negative binomial distribution is


- the size,

- the probability,

- the mean,


and
. In the previous posts, I used

rqpois = function(n, lambda, phi) {
mu = lambda
k = mu/(phi * mu - 1)
r1 = rnbinom(n, mu = mu, size = k)
r2 = rnbinom(n, size=phi*mu/(phi-1),prob=1/phi)
k = mu/phi/(1-1/phi)
r3 = rnbinom(n, mu = mu, size = k)
r4 = rnbinom(n, size=mu/phi/(1-1/phi),prob=1/phi)
r = cbind(r1,r2,r3,r4)
return(r)
}
> N=rqpois(1000000,2,4)
> mean(N[,1])
[1] 2.001992
> mean(N[,2])
[1] 8.000033
> var(N[,1])/ mean(N[,1])
[1] 7.97444
> var(N[,2])/ mean(N[,2])
[1] 4.002022


> mean(N[,3])
[1] 2.001667
> mean(N[,4])
[1] 2.002776
> var(N[,3])/ mean(N[,3])
[1] 3.999318
> var(N[,4])/ mean(N[,4])
[1] 4.009647
To leave a comment for the author, please follow the link and comment on his blog: Freakonometrics - Tag - R-english.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).