| confint.glm_CMP | R Documentation | 
Computes confidence intervals for one or more parameters in a glm_CMP
object.
## S3 method for class 'glm_CMP'
confint(object, parm, level = 0.95, ...)
object | 
 a fitted object of class inheriting from   | 
parm | 
 a specification of which parameters are to be given confidence intervals, either a vector of numbers or a vector of names. If missing, all parameters are considered.  | 
level | 
 the confidence level required.  | 
... | 
 additional argument(s) for methods.  | 
A matrix (or vector) with columns giving lower and upper confidence
limits for each beta parameter. These will be labelled as
(1-level)/2 and 1 - (1-level)/2 in (by default 2.5% and 97.5%).
## Estimate the 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)
## Compute confidence intervals
confint(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.