summary.glm_CMP {DGLMExtPois} | R Documentation |
Summarizing COM-Poisson Fits
Description
These functions are all methods for class "glm_CMP"
or
summary.glm_CMP
objects.
Usage
## S3 method for class 'glm_CMP'
summary(object, ...)
## S3 method for class 'summary.glm_CMP'
print(
x,
digits = max(3, getOption("digits") - 3),
signif.stars = getOption("show.signif.stars"),
...
)
Arguments
object |
an object of class |
... |
further arguments passed to or from other methods. |
x |
an object of class |
digits |
the number of significant digits to use when printing. |
signif.stars |
logical. If |
Examples
## Fit a COM-Poisson model
Bids$size.sq <- Bids$size^2
fit <- glm.CMP(formula.mu = numbids ~ leglrest + rearest + finrest +
whtknght + bidprem + insthold + size + size.sq + regulatn,
formula.nu = numbids ~ 1, data = Bids)
## Obtain a summary of the fitted model
summary(fit)
[Package DGLMExtPois version 0.2.3 Index]