Skip to contents

Confidence intervals for the regression coefficients

Usage

# S3 method for class 'zibellreg'
confint(object, parm = NULL, level = 0.95, ...)

Arguments

object

an object of the class zibellreg

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

...

further arguments passed to or from other methods

Value

100(1-alpha)% confidence intervals for the regression coefficients

Examples

# \donttest{
data(cells)
fit <- zibellreg(cells ~ smoker+gender|smoker+gender, data = cells, approach = "mle")
confint(fit)
#> Warning: longer object length is not a multiple of shorter object length
#> Warning: longer object length is not a multiple of shorter object length
#> $`Degenerated dist.`
#>            2.5%      97.5%
#> [1,] -3.6070331 -0.2963943
#> [2,]  0.5632698  3.7885454
#> [3,] -1.3203266  0.3284594
#> 
#> $`Bell dist.`
#>            2.5%      97.5%
#> [1,]  0.3642123  1.0692117
#> [2,] -0.9712402 -0.2523172
#> [3,] -0.3117155  0.3840110
#> 
# }