I am running the linear regression models using generalized estimating equation with geepack. The confint(fit)
command does not seem to work in here. For example:
f2 <- geeglm(FEV1 ~ Age, data = Hospdata, family=gaussian, id=HHID)
summary(f2)
confint(f2)
I get the following error message in running confint(f2)
:
> confint(f2)
Waiting for profiling to be done...
Error in `[.data.frame`(summ$coefficients, , "Std. Error", drop = FALSE) : undefined columns selected
Is there any way to find the confidence interval in here?