Skip to contents

This function extracts and returns the variance-covariance matrix associated with the regression coefficients when the maximum likelihood estimation approach is used in the model fitting.

Usage

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

Arguments

object

an object of the class bellreg.

...

further arguments passed to or from other methods.

Value

the variance-covariance matrix associated with the regression coefficients.

Examples

# \donttest{
data(faults)
fit <- bellreg(nf ~ lroll, data = faults)
vcov(fit)
#>               (Intercept)         lroll
#> (Intercept)  0.1103530316 -1.556122e-04
#> lroll       -0.0001556122  2.401337e-07
# }