From time to time, I've found the 95% CI outputs like so (see image below) using the gtsummary package. Sometimes I've noticed it is because it doesn't like a colon, space or apostrophe in the variable name or because there are NA's in the factor levels. When I've changed the names, the CI is fixed. However this time it does not seem to be the case. Any ideas what might be the cause of this output?
Thank you
fit3 <- glmer(cclintr ~ SEX + Rg + agroup + death +
psource_group + region + BMI + HOSPVENT +
PATMANICU + fibandflutter + MEDHISTO_03 +
MEDHISTO_35 + Cerebrovasc_group
smo_vape + DOCUSYMP_12 + admonth + (1|FACILITY_DISPLAY_ID),
data= filthosp,
family = binomial,
nAGQ = 1,
control=glmerControl(optimizer="bobyqa",optCtrl=list(maxfun=2e5)))
#Summary into table
library(gtsummary)
f2model_tab <- fit3 %>%
tbl_regression(exponentiate = TRUE ) %>%
bold_labels() %>%
bold_p(t= 0.05)