Estimated regression coefficients for zibellreg model
Usage
# S3 method for class '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.9522307 2.1763937 -0.4958365
#>
#> $`Bell dist.`
#> (Intercept) smoker gender
#> 0.71654595 -0.61170867 0.03630848
#>
# }