Tidy summarizes information about the components of a GEE model.
# S3 method for glmgee
tidy(
x,
conf.int = FALSE,
conf.level = 0.95,
exponentiate = FALSE,
varest = c("robust", "df-adjusted", "bias-corrected", "model"),
...
)
an object of class glmgee.
an (optional) character string indicating whether or not to include a confidence interval in the tidied output. As default, conf.int
is set to FALSE
.
an (optional) value indicating the confidence level to use for the confidence interval if conf.int=TRUE
. As default, conf.level
is set to 0.95.
an (optional) logical indicating whether or not to exponentiate the coefficient estimates. As default, exponentiate
is set to FALSE
.
an (optional) character string indicating the type of estimator which should be used. The available options are: robust sandwich-type estimator ("robust"), degrees-of-freedom-adjusted estimator ("df-adjusted"), bias-corrected estimator ("bias-corrected"), and the model-based or naive estimator ("model"). As default, type
is set to "robust".
further arguments passed to or from other methods.