Cameron AC, Johansson P (1997). “Count Data Regression Using Series Expansion: With Applications”, Journal of Applied Econometrics, 12(3), 203–224.
Cameron AC, Trivedi PK (2013). Regression Analysis of Count Data, 2nd ed. Cambridge: Cambridge University Press.
Jaggia S, Thosar S (1993). “Multiple Bids as a Consequence of Target Management Resistance: A Count Data Approach”, Review of Quantitative Finance and Accounting, 3, 447–457.
Examples
library("countreg")data("TakeoverBids", package ="countreg")## Poisson model:## Jaggia and Thosar (1993), Table 3## Cameron and Johansson (1997), Table IVtb_p<-glm(bids~.+I(size^2), data =TakeoverBids, family =poisson)summary(tb_p)
Call:
glm(formula = bids ~ . + I(size^2), family = poisson, data = TakeoverBids)
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) 0.986060 0.533920 1.847 0.06477 .
legalrestyes 0.260146 0.150959 1.723 0.08484 .
realrestyes -0.195660 0.192631 -1.016 0.30976
finrestyes 0.074030 0.216522 0.342 0.73242
whiteknightyes 0.481382 0.158870 3.030 0.00245 **
bidpremium -0.677696 0.376737 -1.799 0.07204 .
insthold -0.361991 0.424329 -0.853 0.39361
size 0.178503 0.060022 2.974 0.00294 **
regulationyes -0.029439 0.160568 -0.183 0.85453
I(size^2) -0.007569 0.003122 -2.425 0.01532 *
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
(Dispersion parameter for poisson family taken to be 1)
Null deviance: 121.862 on 125 degrees of freedom
Residual deviance: 88.615 on 116 degrees of freedom
AIC: 389.9
Number of Fisher Scoring iterations: 5