Skip to contents

Estimated regression coefficients for the bellreg model

Usage

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

Arguments

object

an object of the class bellreg.

...

further arguments passed to or from other methods.

Value

a vector with the estimated regression coefficients.

Examples

# \donttest{
data(faults)
fit <- bellreg(nf ~ lroll, data=faults)
coef(fit)
#> (Intercept)       lroll 
#> 0.985251465 0.001909333 
# }