Re: [R] Plot GEE confindence interval band ggplot2

2021-06-01 Thread Rui Barradas
Hello, I don't know if the following is what you want but it gives confidence bars. The error in your code is to have Esp as id. dat$Id <- as.integer(factor(dat$Esp)) m5 <- geeglm( formula = tim ~ Pa*Pt, family = Gamma(link = log), data = dat, id = Id, corstr = "exchangeable" ) plo

[R] Plot GEE confindence interval band ggplot2

2021-05-31 Thread Luis Fernando GarcĂ­a
Dear all, I want to plot a Generalized Estimating Equation (GEE) model, with interactions and the confidence interval using a similar style to ggplot2 . I have tried several packages but all of them produce errors. My idea I wanted to know if anyone knows a graphical package which works with GEE