Nothing
# hilbe.NBR2.F8.8.r
# Negative binomial regression distributions with
# user specified series of alpha values for a specified mean value
# From Hilbe, Negative Binomial regression, 2nd ed, Cambridge Univ. Press
# Figures 8.8 default: alpha at 0, .33, .67, 1, 1.5, 3 and mean=1
#
obs <- 11
alpha <- c(.009, .33, .67, 1, 1.5, 3)
y <- 0:10
mu <- 1
amu <- mu*alpha
layout(1)
for (i in 1:length(amu)) {
ynb2 = exp(
y*log(amu[i]/(1+amu[i]))
- (1/alpha[i])*log(1+amu[i])
+ log( gamma(y +1/alpha[i]) )
- log( gamma(y+1) )
- log( gamma(1/alpha[i]) )
)
if (i==1) {
plot(y, ynb2, col=i, type='l', lty=i)
} else {
lines(y, ynb2, col=i, lty=i)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.