Skip to contents

Estimated regression coefficients for zibellreg model

Usage

# S3 method for zibellreg
coef(object, ...)

Arguments

object

an object of the class bellreg

...

further arguments passed to or from other methods

Value

a list containing the the estimated regression coefficients associated with the degenerated and Bell count distributions, respectively.

Examples

# \donttest{
data(cells)
fit <- zibellreg(cells ~ smoker + gender|smoker + gender, data = cells)
coef(fit)
#> $`Degenerated dist.`
#> (Intercept)      smoker      gender 
#>  -1.9511665   2.1751363  -0.4957392 
#> 
#> $`Bell dist.`
#> (Intercept)      smoker      gender 
#>  0.71658857 -0.61180769  0.03639748 
#> 
# }